Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to run a script without Photoshop's GUI or...

New Here ,
Dec 21, 2008 Dec 21, 2008
within GUI, but without animation of every command in the script?

I need to process huge number of pictures - animation makes serious impact on performance...

Thanx all.
TOPICS
Actions and scripting
1.9K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe
Explorer ,
Dec 21, 2008 Dec 21, 2008
> I need to process huge number of pictures - animation makes serious impact on performance...

In the Actions Palette in Playback options, make sure that 'Accelerated' is
checked. On the Mac, you can 'Hide' Photoshop from the icon menu on the Dock.
That may speed things up since it's not actually rendering pixels on screen but
I haven't done any testing to verify this. There may be something similar that
can be done on XP/Vista.

-X
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Dec 21, 2008 Dec 21, 2008
I thought there is a script command to switch off GUI completly like OLE Automation servers in Windows (Word, Excel, etc...)
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Dec 21, 2008 Dec 21, 2008
LATEST
In VB/VB.Net you can use the visible property and make Photoshop invisible. I don't think it appreciably speeds up the processing but it does seem to help some.

The downside is if your application has some kind of issue and doesn't make Photoshop visible again before quitting. At least in older versions (pre CS3) I experienced Photoshop not showing itself even after stopping and restarting, including re-booting etc. You had to run a program that made it visible again. At least that was my experience.

I don't know if that is still true in CS2/CS3/CS4 however and may not be.

While I haven't done any highly controlled bench marking, I have found that in CS4 (at least the original public release of it), VB.net seemed to outperform java script doing the same thing by about 33%. I did my best to make both as efficient as possible and I just couldn't get the java script stuff to operate as fast. I was surprised. Again, it wasn't as controlled as it should have been, but it was at least consistent.

Another thing that should make the execution more efficient is to make sure the layers palette is either not shown or is collapsed. That actually seems to speed things up quite a bit. The program doesn't have to show all the changes happening in that palette. Of course all pallets that change upon execution of commands should also be closed or collapsed. This should be done even if you are going to minimize and/or hide photoshop too. I'm of the opinion (via observation) that the program knows when these palettes don't need to be updated and so they must avoid doing the code behind the display of the change.

Regards

George Smith
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines