Metadata-Version: 2.2
Name: selphyprint
Version: 0.0.5
Summary: Prepare an image for printing on Canon Selphy printers without cropping
Author-email: Roman <roman@kosobrodov.net>
Project-URL: Homepage, https://github.com/RomanKosobrodov/selphy-print
Project-URL: Bug Tracker, https://github.com/RomanKosobrodov/selphy-print
Keywords: Canon Selphy crop bleeding
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pillow>=10.3.0

# selphyprint

`selphyprint` prepars image files for printing on Canon Selphy printers without cropping. 
The image is resized to fit into the usable area of the print and padded with borders required to avoid cropping.
Additional borders can be added if desired. The resulting image is saved into a file that can be sent directly to the printer.

# Printer configuration

Configure your printer to use the borderless mode and from your system print dialog choose "Fill Page".

# Installation

Install from PiPY:
```commandline
pip install selphyprint
```

# Usage

To prepare a single image for printing use the following command:
```commandline
selphyprint --input <input-image-file> --output <output-image-file>
```
For example:
```commandline
selphyprint --input waves.tif --output waves-print.tif
```

You can also process all files in a directory, for example:
```commandline
selphyprint --input /home/roman/photos --output /home/roman/prints
```
