Mobile app version of vmapp.org
Login or Join
Gonzalez368

: Editing photo dimensions in large batches If I had the time, I would go through each and every photo to make sure that the dimensions and quality are pixel perfect. However, I'm in a time

@Gonzalez368

Posted in: #AdobePhotoshop #Photography

If I had the time, I would go through each and every photo to make sure that the dimensions and quality are pixel perfect. However, I'm in a time crunch, and need to make the couple hundred photos that are 4320 x 3240 into 950x630.

now I could-
1. Upload them into WordPress, uses native image reducing components and J query go from there.
2. Go through each and every photo, reduce file size, and proportion and bring it to Yahoo's PNG processing script.

However, maybe I'm missing a choice or alternative workflow that would allow for processing all of these photos in a clear manner without losing quality or perspectives. Any workflow suggestions?

10.04% popularity Vote Up Vote Down


Login to follow query

More posts by @Gonzalez368

4 Comments

Sorted by latest first Latest Oldest Best

 

@Looi7658678

ImageMagick

Whenever it comes to batch processing of a large number of files we may want to consider using the immensely versatile image processor tools provided by the Image Magick. This software is cross-platform (Unix, Windows, Mac OS X, iOS), Open Source, and provides many parameters to fine-tune the results for professional usage.

To resize an image we may use the convert tool with the parameter resize from a command line (best from the folder our images live in). ImageMagick supports wildcards * and ? for batch conversion:

convert *.png -resize <geometry> resized.png


Give in the desired geometry values. For a width of 950 pixels this would be just the number 950.

But this is not all we can do. We can also adjust the color space from sRGB to RGB before we scale the image for much better color results:

convert *.png -colorspace RGB -resize 950 -colorspace sRGB resized.png


We may also use an spline filter with additional sharpening of the resized image to reduce blurring with the spline and the unsharp filter (experiment with different values for best result):

convert *.png -colorspace RGB -filter spline -resize 950 -unsharp 0x1 -colorspace sRGB resized.png


For an overview of resizing techniques using Image Magick I recommend this nice tutorial:


Image Magick Resizing Techniques

10% popularity Vote Up Vote Down


 

@Rivera951

imagemagick is a command-line tool that is perfectly suited to batch processing. It will probably best suit you if you are just a little bit familiar with Linux/Unix shell.

The resize command is described here. It has a whole lot of other functionality too.

10% popularity Vote Up Vote Down


 

@Radia289

You can use a Photoshop Batch to re-size the images.

This is how you do it:

Step 1: Create an action for the re-sizing

Actions are a great way of saving time when you need to do repetitive tasks in Photoshop. You can record a process, and then 'play' it to repeat it, and you can add as many steps in that process as you like.

In your case, the first thing you need to do is record an action that resizes an image to 950x630 px. You can do this by using the Actions panel (Windows > Actions, or Ctrl + F9):


Go to Window > Actions to bring up the Actions palette.
Click Create new action and give it a name like "Resize"
Click Record.
In the main Photoshop menu bar, go to Image > Image Size.
Select "Pixels" from the drop-down menu next to Width.
Type in "950" and click OK.
Go to the Actions palette and click on the Stop button to stop recording.


You should see your new action in your palette.

Step 2: Apply the action to a folder of images using a Batch

Once you have recorded the action, you can tell Photoshop to (instead of just applying it inside the same file) use it in a folder.


Go to File > Automate > Batch to bring up the Batch dialog.
Find the "Resize" action you just recorded in the Actions drop-down list.
Under the Source header, select "Folder" in the drop-down list and click Choose. Navigate to the folder where you keep your images.
Check the boxes to suppress warnings and options dialogs.
Under the Destination header, select "Folder" in the drop-down list and click Choose. Navigate to the folder.
If you want to change the names of your files, you can do so here under the File Naming sub-header.
Make sure you have the "Compatibility" boxes checked.
Click OK.

10% popularity Vote Up Vote Down


 

@Smith574

It would appear you are looking for the image processor within Photoshop.

To find it go to File > Scripts > Image Processor



Select the desired folder



Input the destination. If you dont do this step I believe it just saves it over the files. Its been awhile since I have used it.



add your settings



Here is a video on it that uses CS6.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme