A Python package for image resizing and PDF to image conversion
Project description
ImageWand
A powerful command-line tool for image manipulation, including PDF to image conversion, image resizing, auto-fixing scanned images, applying filters, and merging scanned images.
Installation
pip install imagewand
Commands Overview
ImageWand provides several commands for different image manipulation tasks:
pdf2img: Convert PDF files to imagesresize: Resize imagesalign: Automatically align tilted images to be horizontal/verticalfilter: Apply various filters to imagesmerge: Merge multiple scanned images into oneautocrop: Automatically crop images using frame detection or border removalinfo: Display detailed information about images
Command Usage
PDF to Images
Convert PDF files to images with customizable DPI and format:
# Basic usage
imagewand pdf2img input.pdf
# Specify output directory and format
imagewand pdf2img input.pdf -o output_dir -f png
# Set custom DPI
imagewand pdf2img input.pdf -d 300
Resize Images
Resize images while maintaining aspect ratio:
# Resize by width
imagewand resize input.jpg -w 800
# Resize by height
imagewand resize input.jpg --height 600
# Resize by percentage
imagewand resize input.jpg -p 50
# Specify output path
imagewand resize input.jpg -o resized.jpg -w 800
Align Tilted Images
Automatically detect and correct the rotation of tilted images:
# Basic usage - auto-detects the best method
imagewand align tilted_scan.jpg
# Specify output path
imagewand align tilted_scan.jpg -o aligned.jpg
# Choose specific alignment method
imagewand align tilted_scan.jpg -m hough
imagewand align tilted_scan.jpg -m contour
imagewand align tilted_scan.jpg -m center
# Adjust minimum angle threshold for correction (default: 1.0 degrees)
imagewand align tilted_scan.jpg -a 0.5 # More sensitive
imagewand align tilted_scan.jpg -a 2.0 # Less sensitive
Alignment methods explained:
auto(default): Tries all methods and uses the one that detects the most significant anglehough: Uses Hough Line Transform, best for documents with clear straight linescontour: Uses contour analysis, better for images with distinct shapescenter: Focuses on the central portion of the image, ignoring the background (best for photos with clear subjects)
Output filenames:
- Default:
image_aligned.jpg(for default parameters) - With parameters:
image_aligned_hough_a0.5.jpg(for method=hough, angle_threshold=0.5)
Apply Filters
Apply various image filters:
# Apply single filter
imagewand filter input.jpg -f grayscale
# Apply multiple filters
imagewand filter input.jpg -f "grayscale,sharpen"
# Process directory recursively
imagewand filter images/ -f grayscale -r
# List available filters
imagewand list-filters
Filter Parameters
You can customize filter parameters using the format filtername:param=value:
# Adjust contrast level (default is 1.5)
imagewand filter drawing.jpg -f "contrast:factor=1.2"
# Multiple filters with custom parameters
imagewand filter drawing.jpg -f "saturation:factor=1.3,contrast:factor=1.2,sharpen:factor=1.8"
# Mix of default and custom parameters
imagewand filter drawing.jpg -f "saturation:factor=1.3,contrast,sharpen:factor=2.0"
Common filter parameters:
contrast:factor=1.2- Lighter contrast (default: 1.5)sharpen:factor=1.8- Stronger sharpening (default: 2.0)blur:radius=3- Adjust blur radius (default: 2)
Merge Images
Merge multiple scanned images into one:
# Merge all images in a directory
imagewand merge images_folder/ -o merged.jpg
# Merge specific images
imagewand merge image1.jpg image2.jpg image3.jpg -o merged.jpg
# Enable debug mode to see the matching process
imagewand merge images_folder/ -o merged.jpg --debug
Autocrop Images
Automatically crop images using frame detection or border removal:
# Auto mode - Tries frame detection first, falls back to border removal
imagewand autocrop photo.jpg
# Frame mode - Extract photo from contrasting frame/background
imagewand autocrop photo.jpg -m frame
imagewand autocrop photo.jpg -m frame --margin -5 # More aggressive crop
imagewand autocrop photo.jpg -m frame --margin 10 # Add margin
# Border mode - Remove white margins only
imagewand autocrop photo.jpg -m border
imagewand autocrop photo.jpg -m border -b -5 # More aggressive crop
imagewand autocrop photo.jpg -m border -b 10 # Keep more border
Cropping modes explained:
-
auto(default): Tries frame detection first, falls back to border removal if no frame is detected -
frame: Best for photos on contrasting backgrounds (e.g., artwork on black paper)- Use
--marginto adjust cropping (negative for tighter crop, positive for more margin) - Default margin is -5 for slightly aggressive crop
- Use
-
border: Best for documents with white margins- Use
-bto adjust border percentage (negative for tighter crop, positive to keep more border) - Default border is 0 for exact content boundaries
- Use
Output filenames:
- Auto mode:
photo_auto.jpg,photo_auto_frame.jpg, orphoto_auto_border.jpg - Frame mode:
photo_frame.jpgorphoto_frame_m10.jpg(with margin 10) - Border mode:
photo_border.jpgorphoto_border_b10.jpg(with 10% border)
Image Information
Display comprehensive information about images:
# Basic usage
imagewand info photo.jpg
The info command displays:
- Basic file information: filename, path, size, modification date
- Image properties: dimensions, format, color mode, color depth
- DPI information
- Color statistics: brightness, RGB channel values, sharpness
- EXIF data (when --verbose flag is used)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file imagewand-0.1.1.tar.gz.
File metadata
- Download URL: imagewand-0.1.1.tar.gz
- Upload date:
- Size: 45.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be50d20be28a09c33bebb3055706361045e1263bf1441b4facf777c8627bf99b
|
|
| MD5 |
4ce33f05257d98a07767e2ce8ee8254b
|
|
| BLAKE2b-256 |
3193e89a85e7996ca08b0b3df1502220164ad4503aff99bd371ed5bbf346b30d
|
File details
Details for the file imagewand-0.1.1-py3-none-any.whl.
File metadata
- Download URL: imagewand-0.1.1-py3-none-any.whl
- Upload date:
- Size: 34.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c0b4f8f13405a2fc0a97b1efdce5ffee047f83afb7f1ecc29ff31ae0474642d
|
|
| MD5 |
751f0b80a013c5731db5201d2bd40719
|
|
| BLAKE2b-256 |
8f902a1742f24c88e5d97165542d8065f59b87c64913e4c5ee7b50f6caeecc4d
|