⇤ ← Revision 1 as of 2007-02-12 12:13:57
Size: 401
Comment: mac
|
← Revision 2 as of 2008-11-15 13:59:57 ⇥
Size: 401
Comment: converted to 1.6 markup
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
["/AppscriptModule"] scripting for /PhotoShop | [[/AppscriptModule]] scripting for /PhotoShop |
/AppscriptModule scripting for /PhotoShop
To apply unsharp mask to the first layer of the first document:
Toggle line numbers
1 ps = app("Adobe Photoshop CS")
2 ps.filter_(ps.documents[1].art_layers[1], using=k.unsharp_mask, with_options={k.threshold:2, k.amount: 200.0, k.radius: 1.0})
You need the latest version of /AppscriptModule for the filter_() command to work correctly.