5 releases
0.2.3 | Jul 10, 2024 |
---|---|
0.2.2 | Jul 9, 2024 |
0.2.1 | Jun 14, 2024 |
0.2.0 | Jan 30, 2024 |
0.1.0 | Dec 29, 2023 |
#471 in Images
209 downloads per month
26KB
380 lines
Reduce Image Size
Description
Reduces size of images in a folder (and optionally sub-folders, recursively).
This is useful for archiving of photos, for example, as they look the same on a display even with a reduced file size.
This application reduces file sizes of images in bulk.
Supports JPEG and PNG image formats, with the following file extensions (case-insensitive): jpg
, jpeg
, png
.
Supports Windows, macOS on Apple silicon (ARM) and x86-64, and Linux on ARM and x86-64.
Executable files for Windows, macOS and Linux can be downloaded from the Releases page of the repository.
By default, keeps the original images and creates copies with reduced file size.
By default, copies the entire folder tree, with all sub-folders that exist in the source tree.
The target folder tree will be created automatically,
and the new reduced-size images will be copied properly to their respective paths.
It is only required to provide the root target folder, and it will also be created if it doesn't exist.
Non-supported files will simply be copied to the destination.
The destination folder can be the same as the source folder, in which case the original images will be overwritten,
and not retained.
Other, non-supported files, will be retained.
If there is enough disk space, it is advised to specify a different destination folder than the source folder,
so that the original images can be retained and the newly-created reduced-size images can be inspected for quality.
A user can experiment with the resize
and the quality
arguments.
Also, the user can go only one level deep and not recursively, or simply experiment on a copy of an image folder.
If satisfied with the result, original images can be deleted afterwards easily to save disk and/or cloud space.
Options
- Look into subdirectories recursively (process the entire tree); recommended:
-r
,--recursive
- Reduce both image dimensions by half:
--resize
- JPEG quality, on a scale from 1 (worst) to 100 (best); the default is 75; ignored in case of PNGs:
-q
,--quality <QUALITY>
- A minimum file size for which a user would like to perform file size reduction:
-s {s,m,l,S,M,L}
,--size {s,m,l,S,M,L}
- S = 100 kB, M = 500 kB, L = 1 MB
- Files that are smaller than the designated size will simply be copied to the destination folder.
- If this option is left out, then all files are considered for size reduction; i.e., minimal considered size is 0.
Examples
See below for how to prepare the application for running.
The file paths in the examples are for Windows.
reduce_image_size D:\img_src D:\img_dst
reduce_image_size D:\img_src D:\img_dst -r
reduce_image_size D:\img_src D:\img_dst -r -s m
reduce_image_size D:\img_src D:\img_dst --recursive --size L
reduce_image_size D:\img_src D:\img_dst -r --resize -q 60 -s l
reduce_image_size D:\img_src D:\img_dst --recursive --resize --quality 60 --size L
Notes
- Developed in Rust 1.74.1, but also tested later with Rust 1.79.0.
- Tested on x86-64 CPUs on Windows 10 and Windows 11.
- Tested on Apple silicon, M2 Pro, on macOS Sonoma 14.5.
- Also tested on WSL - Ubuntu 22.04.2 LTS (GNU/Linux 5.15.133.1-microsoft-standard-WSL2 x86_64) on Windows 11 @ x86-64.
- Linux wasn't tested directly, but should work, at least on x86-64 CPUs.
Running the Application
Executable files for Windows, macOS and Linux can be downloaded from the Releases page of the repository.
Use the latest release version.
Download the appropriate archive for your OS and unpack it to a desired folder.
The archive files contain an executable.
After unpacking the archive, go to the directory with the executable and run the program as:
reduce_image_size <source_folder> <destination_folder> [options]
Or, provide full path to the program.
Paths to the source and destination folders can be absolute or relative.
Building the Application and Running it With cargo
This section applies in case you don't have an executable and need to build it.
It may depend on the OS. Namely, while installation of nasm
is needed on Windows, it is not needed on macOS.
nasm
doesn't support Apple silicon, but this crate works on macOS Sonoma 14.5 on Apple M2 Pro processor.
Linux hasn't been tested. Also, macOS on x86 architecture hasn't been tested.
The library and the application require:
Add CMake
to the PATH
environment variable.
Make sure to build the application in release
mode as it will run much faster that way.
Build:
cargo build --release
Run:
cargo run --release -- <source_folder> <destination_folder> [options]
Library
This Rust crate was originally meant as a binary (executable) crate, i.e., an application, but it was later decided to publish the library part, so it can be used as a Rust library, too.
Only the main image-processing function, process_images
, has been made public.
Helper functions have been made private.
Dependencies
~15–24MB
~336K SLoC