I have not read anywhere about a Photoshop COM module, and I tried whipping one out the other day and I was fairly disappointed.
$ps = new COM ('Photoshop.Application');
$ps->Quit ();
That worked perfectly and loaded the application and then quit (I could see it in the processes dialog), but anytime I tried a:
$ps->Open ('pic.jpg');
it spit out an error that looked like this:
Fatal error: Uncaught exception 'com_exception' with message '<b>Source:</b> Adobe Photoshop<br/><b>Description:</b> General Photoshop error occurred. - <no additional information available>' in C:\home\jbrandt\pic.php:5 Stack trace: #0 C:\home\jbrandt\pic.php(5): com->Open('c:/home/jbrandt...') #1 {main} thrown in C:\home\jbrandt\pic.php on line 5
I suspect that the reason could be there is no support for Photoshop in PHP, but then why would it properly load and close the module?
Thanks in advance,
Jared