Skip to main content
Known Participant
September 26, 2019
Answered

Batch images in multiple folders (Save for Web)

  • September 26, 2019
  • 2 replies
  • 4224 views

I'm still looking to do this simple action: Create a script to process batch images, which are contained in multiple folders. I want them to be recorded in their respective folders, in web format, with a "Save for Web".
Apparently this is still not possible ? It's indispensable when you are working with a lot of images to integrate in a Website.

The only trick I know is to create a temporary folder and do your batch, folder by folder, and move the created images everytime to the right folder.

This topic has been closed for replies.
Correct answer Jeff Arola

Check on the Layer Saver script over here:

 

PS-Scripts

 

 

2 replies

Participating Frequently
August 19, 2021

Hi, I am looking at doing something similar. I want to save for web each folder along with the bottom layer (BG) set automatically. Anybody knows how to do that or write a script for it?

Jeff Arola
Community Expert
Jeff ArolaCommunity ExpertCorrect answer
Community Expert
August 20, 2021

Check on the Layer Saver script over here:

 

PS-Scripts

 

 

Stephen Marsh
Community Expert
Community Expert
August 21, 2021

@Jeff Arola – Good call, I had forgotten about this script from Paul!

 

For modern versions of Photoshop using the second darkest UI colour, you may wish to update the scriptUI colour.

 

Original code line 44:

 

var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.99, 0.99, 0.99, 1]);

 

Change 0.99 to 0.25 or 0.3:

 

var myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [0.25, 0.25, 0.25, 1]);

 

 

 

One could also change line 103 from:

 

win.g5.rb4.value=true;

 

To:

 

win.g5.rb8.value=true;

 

To default the radio button selection to "Save all layerSets along with bottom layerset".

Jeff Arola
Community Expert
Community Expert
September 26, 2019

You could use the Image Processor Pro script which has a Save For Web setting.

Image Processor Pro / v3_2 betas

FbcAuthor
Known Participant
September 26, 2019

Thank you, it's exactly what I'm searching for. It's a mix between all the functionalities I need. Adobe should include that in Photoshop.