Convert format of HEIC image to PNG by using Python.
Project description
HEIC2PNG
This is a tool for converting the format of HEIC images to PNG using Python. It now supports quality adjustment and has an option to overwrite existing files, enhancing the flexibility and usability of the tool.
Features
- HEIC to PNG conversion with high quality output
- Quality control (1-100) for file size optimization
- Pure Python implementation using PIL (Pillow) built-in optimization
- Cross-platform compatibility - works on all platforms
Installation
pip install heic2png
Visit HEIC2PNG on PyPI for more details.
Quick Start
Regular File Processing (with processing info)
# Convert with default settings
heic2png -i image.heic
# Output: Converting image...
# Successfully saved converted image to: image.png
# Convert with quality optimization
heic2png -i image.heic --quality 50 -o optimized.png
Stream Processing (silent, for pipelines)
# Silent conversion for shell pipelines
cat image.heic | heic2png > output.png
# With quality optimization
cat image.heic | heic2png --quality 50 > optimized.png
Usage
As a Library
You can use HEIC2PNG in your Python code as shown below:
from heic2png import HEIC2PNG
if __name__ == '__main__':
heic_img = HEIC2PNG('test.heic', quality=90) # Specify the quality of the converted image
heic_img.save() # The converted image will be saved as `test.png`
Command Line Interface
HEIC2PNG also provides a CLI for easy conversion of HEIC images to PNG. Here are some examples:
Convert a HEIC image to PNG with a specified output path:
heic2png -i test.heic -o test.png -q 90 # -q is used to specify the quality
If you want to keep the original name, use the command below. It will generate test.png for you:
heic2png -i test.heic -q 90
To overwrite an existing PNG file, use the `-w`` flag:
heic2png -i test.heic -o test.png -q 90 -w
Usage Examples
Regular File Processing
Basic Conversion
# Convert with default settings (shows processing info)
heic2png -i image.heic
# Output: Converting image...
# Successfully saved converted image to: image.png
# Convert with explicit output file
heic2png -i image.heic -o output.png
# Convert with quality optimization
heic2png -i image.heic --quality 50 -o optimized.png
Verbose Mode
# Show detailed conversion settings
heic2png -i image.heic --verbose
# Output:
# Converting image...
# Conversion settings:
# Input: image.heic
# Output: image.png
# Quality: 80
# Format: png
# Overwrite: False
# Successfully saved converted image to: image.png
Quality Control
# High quality (larger file)
heic2png -i image.heic --quality 95 -o high_quality.png
# Low quality (smaller file)
heic2png -i image.heic --quality 30 -o compressed.png
# Default quality (80)
heic2png -i image.heic -o default.png
Format Conversion
# Convert to JPEG
heic2png -i image.heic --format jpg -o output.jpg
# Convert to PNG (default)
heic2png -i image.heic -o output.png
Batch Processing
# Process multiple files
for file in *.heic; do
heic2png -i "$file" --quality 60 --overwrite
done
# Process with different quality settings
heic2png -i photo1.heic --quality 90 -o photo1_hq.png
heic2png -i photo2.heic --quality 50 -o photo2_compressed.png
Stream Processing (stdin/stdout)
HEIC2PNG supports reading from stdin and writing to stdout, making it perfect for shell pipelines and automated processing:
Basic Stream Processing
# Read from stdin, write to stdout (no processing messages)
cat image.heic | heic2png > output.png
# Read from stdin, write to file (no processing messages)
cat image.heic | heic2png -o output.png
# Note: 'heic2png -i image.heic > output.png' now shows processing info
# Use 'cat image.heic | heic2png > output.png' for silent stream processing
Quality Optimization in Streams
# Low quality (smaller file size)
cat image.heic | heic2png --quality 30 > optimized.png
# High quality (larger file size)
cat image.heic | heic2png --quality 90 > high_quality.png
Format Conversion in Streams
# Convert to JPEG
cat image.heic | heic2png --format jpg > output.jpg
# Convert to PNG (default)
cat image.heic | heic2png > output.png
Advanced Pipeline Examples
# Batch processing with quality optimization
for file in *.heic; do
cat "$file" | heic2png --quality 50 > "${file%.heic}_optimized.png"
done
# Process and compress in one pipeline
cat image.heic | heic2png --quality 40 | gzip > compressed.png.gz
# Convert and resize (requires additional tools)
cat image.heic | heic2png | convert - -resize 50% resized.png
Stream Processing Notes
- Input: If no
-iparameter is specified, input is read from stdin - Output: If no
-oparameter is specified, output is written to stdout - Messages: Stream mode (no
-iparameter) produces no processing messages - Quality: Works with all quality settings (1-100)
- Formats: Supports PNG, JPG, and JPEG output formats
- Transparency: Fully preserved in stream processing
- Behavior:
heic2png -i file.heic > output.pngshows processing info (regular mode) - Behavior:
cat file.heic | heic2png > output.pngis silent (stream mode)
References
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 heic2png-1.2.0.tar.gz.
File metadata
- Download URL: heic2png-1.2.0.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c95313b99fcd45aed3b5b5e6b48137e86d68d30d288fef575480fa587e4604b
|
|
| MD5 |
444f0cf331d50a4dcd0caac5b0d1e18d
|
|
| BLAKE2b-256 |
912a0bc5c742368a15ae8469af742ac2b6a01739b5c58468a2662781d639925e
|
File details
Details for the file heic2png-1.2.0-py3-none-any.whl.
File metadata
- Download URL: heic2png-1.2.0-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32e9ce0c1349bdbd435d69b6626063962be73fb9b39fed2c562d8ef8a55f1f57
|
|
| MD5 |
2d1d259baa4a9f01342be0d399d8253c
|
|
| BLAKE2b-256 |
64723184fbc08287199f0530c790fe29fc6e111a1516db80f2d530300ca196cd
|