Batch processing image files with imgp

Pixels or Percentages

Instead of specifying the resolution in pixels, you also can specify a percentage of the original image. The command then changes to

imgp -x 30

which reduces all images to 30 percent of the original resolution. This time, the process took 1.31 seconds and reduced the size of the directory to 12.3MB.

Instead of a fixed resolution or percentage, you can also specify the desired width (800, in this case) as follows:

imgp -x 800x0

and imgp will keep the original image's aspect ratio. Note: On imgp's GitHub page, the aspect ratio information is shown as horizontal to vertical (abbreviated to h x v, which is different from the standard h x w for height to width).

If you are in a directory that contains images in both JPEG or PNG formats, the program will process them without you having to specify the directory explicitly. The reduced images will have a new extension (_IMGP.jpeg or _IMGP.png) and end up in the same directory as the source material.

If you use the -wx option instead of -x, imgp will delete the source files, and the converted images will keep the original file names without the additional _IMGP. If you use the -n or --enlarge option, only PNG files with resolutions smaller than the target resolution will be processed. The -f or --force option forces precisely the specified target resolution (Figure 3).

Figure 3: If you want to experiment, you can force any aspect ratio with the -f or --force option.

Quality Control

Unless you use the -i or --includeimgp option, imgp ignores previously converted files. You can suppress the output for each manipulated image in the terminal by specifying -m or --mute. You can further reduce image size with -o or --optimize, but it will result in loss of quality and a longer processing time.

For JPEG files, you use -q or --quality and assign a value from 1 to 95 to the parameter to specify the desired quality. Line 1 of Listing 2 defines a quality of 60 (75 is the default). You can also stipulate that you only want to process files above a certain size. Line 2 of Listing 2 only processes files that are larger than 50KB (51200 bytes).

Listing 2

Changing the Quality

01 imgp -q 60 -x 1024x768 <image>
02 imgp -x 1024x768 -s 51200

Another trick that imgp has up its sleeve is clockwise rotation. If an image has the wrong orientation, you can fix this by rotating it through 90 degrees with the command:

imgp -o 90 ~/image.jpg

The tool can additionally convert from PNG to JPEG if you add the -c or --convert option (Figure 4).

Figure 4: To convert PNG files to JPEG, use the -c or --convert option.

The -e or --eraseexif option removes the metadata from the processed images (Figure 5). To see how much space could be saved by removing the metadata, we used the following command on a directory consisting of 8.4MB:

imgp -ex 1024x768
Figure 5: You can remove the Exif metadata, which the camera stores in the image.

The result was a directory size of 6.4MB.

Last but not least, to solve problems, the -d or --debug switch lets you create a logfile.

Conclusions

There are many conversion tools similar to imgp (both with and without a GUI), including ImageMagick, GraphicsMagick, and Converseen. What sets imgp apart is the speed at which the tool does its work. Using imgp as a preliminary step, you can bulk process large collections with thousands of images in a very short time and then move on to focus on advanced editing.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • Image Processing with EXIF

    You can rename and modify JPEG files without touching the graphics by manipulating settings in the file header.

  • ImageMagick

    GIMP isn’t the only option for photo manipulation. ImageMagick, a collection of command-line programs for image processing, can help you process multiple images in one go.

  • Converseen

    If you have an extensive collection of photos, you will hardly want to edit each photo individually. Converseen lets you rotate, scale, and convert a large number of images in a single run.

  • Image Wizardry

    The free ImageMagick graphics toolbox brings the feature set of a full-blown image processor to the command line.

  • Lepton Image Compressor

    Lepton lets you compress your photo files to make room for more.

comments powered by Disqus