Batch processing image files with imgp
Rapid Resizer
In no time at all, imgp can change the resolution of images, as well as convert files from PNG to JPEG, remove metadata, and rotate images.
Suppose you have hundreds or even thousands of photos that you want to present on a web page. If the images use the original camera resolution, they could severely slow down or even paralyze a website populated with this data. Optimizing the images can save bandwidth on the network and space on the storage medium.
With a large number of images, a batch processing tool such as imgp
[1] comes in handy. The command-line tool, formerly known as imgd
and written in Python, provides functions for resizing images in JPEG and PNG formats, as well as converting from PNG to JPEG, rotating the images, and removing metadata.
Even with thousands of files, imgp
does its job at lightning speed. The developer, Arun Prakash Jana, achieves this through multicore processing, an adaptive algorithm, and the Python Pillow library [2].
On processors that support single instruction, multiple data (SIMD) [3], you can use Pillow-SIMD [4] as an alternative to further speed up processing. In testing on an external hard disk with a USB 2 connection, Jana claims to have converted 8,823 images of different resolutions (with a total size of 4.5GB) to a resolution of 1366x1000 pixels in about eight minutes, with the resulting total size dropping to 897MB.
Easy Access
To install imgp
on a current distribution, you can simply use the package manager in most cases. The current version 2.8 is available on Arch Linux, CentOS, Debian Testing and Unstable, Devuan, Fedora, openSUSE Leap 15.3, Ubuntu 21.04, and others.
If your distribution ships with an older version of imgp
, install the packages from GitHub for DEB and RPM-based distributions or build the package from the source code [5]. Python 3.5 or newer is required. The nnn
[6] terminal file manager, also developed by Jana, offers batch conversion using imgp
as a script. (Jana is also the developer of another useful tool, googler
[7]).
Using imgp
's options, you can resize image files by specifying a percentage or a resolution. You can also rotate the image clockwise by a freely selectable angle, optimize images to save space, convert PNG to JPEG, delete Exif metadata, and more.
Options
To test out imgp
's capabilities, we tried out various imgp
command-line options on 65 vacation photos taken with a smartphone. The image sizes ranged from around 2 to 5MB, with a total size of 215.7MB. The tests were run on a PC with a Ryzen 7 3700X CPU with 32GB RAM.
If you enter imgp
at the command line without specifying any other parameters, the help page (Figure 1) loads with a list of all the options for manipulating the size or orientation of an image. As usual, imgp
assumes the current directory as the source unless you specify a different source. However, you can also process multiple sources in a single command.
Amazingly Fast
As the simplest test case, we entered the following command
imgp -x 1024x768
in the directory containing the 65 image files. This command converts all the images (with various resolutions) to 1024x768 pixels. The entire process took 1.29 seconds in the test and reduced the folder size from 215.1MB to 8.4MB (Figure 2). Listing 1 shows the command structure for processing multiple folders and files simultaneously.
Listing 1
Processing Multiple Sources
imgp -x 1024x768 ~/images/image1 ~/photos/image2 ~/pictures/
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
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
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.