Invoking Photoshop

  • Thread starter Thread starter Gary White
  • Start date Start date
G

Gary White

Can somebody help point me to some example code to invoke a Photoshop action
on a file. I am using .net studio.

Many thanks

Gary
 
To invoke PhotoShop or to invoke a PhotoShop action? Big difference.

If all you want to do is start PhotoShop:
system.Diagnostics.Process.Start("PhotoShopEXEfile or
SpecificPhotoShopFileToWorkOn")

If you want to do a specific PhotoShop action, you'll need to consult your
PhotoShop documentation to see if it supports an API.
 
As a addition to Scott,
If you want to do a specific PhotoShop action, you'll need to consult your
PhotoShop documentation to see if it supports an API.

And see if you are allowed to do that and if so what are the conditions for
that.

Cor
 
Back
Top