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).
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).
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
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.
Infos
- imgp: https://github.com/jarun/imgp
- Pillow: https://pillow.readthedocs.io/en/stable/
- SIMD: https://en.wikipedia.org/wiki/SIMD
- Pillow-SIMD: https://github.com/uploadcare/pillow-simd
- Binary packages: https://github.com/jarun/imgp/releases/tag/v2.8
- nnn: https://github.com/jarun/nnn
- googler: https://github.com/jarun/googler
« Previous 1 2
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you've found an article to be beneficial.
News
-
Armbian 23.05 is Now Available
Based on Debian 12, the latest version of the ARM/RISC-V distribution is now available to download and install.
-
Linux Mint Finally Receiving Support for Gestures
If you use the Linux Mint Cinnamon desktop, you'll be thrilled to know that 21.2 is getting support for gestures on touchscreen devices and touchpads.
-
An All-Snap Version of Ubuntu is In The Works
Along with the standard deb version of the open-source operating system, Canonical will release an-all snap version.
-
Mageia 9 Beta 2 Ready for Testing
The latest beta of the popular Mageia distribution now includes the latest kernel and plenty of updated applications.
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.