2019-08-25 05:05:25 +00:00
|
|
|
[![Travis Status](https://travis-ci.org/josch/img2pdf.svg?branch=master)](https://travis-ci.org/josch/img2pdf)
|
|
|
|
[![Appveyor Status](https://ci.appveyor.com/api/projects/status/2kws3wkqvi526llj/branch/master?svg=true)](https://ci.appveyor.com/project/josch/img2pdf/branch/master)
|
|
|
|
|
2012-03-29 09:11:23 +00:00
|
|
|
img2pdf
|
|
|
|
=======
|
2012-03-29 09:08:32 +00:00
|
|
|
|
2018-07-18 13:52:54 +00:00
|
|
|
Lossless conversion of raster images to PDF. You should use img2pdf if your
|
|
|
|
priorities are (in this order):
|
|
|
|
|
|
|
|
1. **always lossless**: the image embedded in the PDF will always have the
|
|
|
|
exact same color information for every pixel as the input
|
|
|
|
2. **small**: if possible, the difference in filesize between the input image
|
|
|
|
and the output PDF will only be the overhead of the PDF container itself
|
|
|
|
3. **fast**: if possible, the input image is just pasted into the PDF document
|
|
|
|
as-is without any CPU hungry re-encoding of the pixel data
|
|
|
|
|
|
|
|
Conventional conversion software (like ImageMagick) would either:
|
|
|
|
|
|
|
|
1. not be lossless because lossy re-encoding to JPEG
|
|
|
|
2. not be small because using wasteful flate encoding of raw pixel data
|
|
|
|
3. not be fast because input data gets re-encoded
|
|
|
|
|
2018-08-01 20:13:58 +00:00
|
|
|
Another advantage of not having to re-encode the input (in most common
|
|
|
|
situations) is, that img2pdf is able to handle much larger input than other
|
|
|
|
software, because the raw pixel data never has to be loaded into memory.
|
2018-07-18 13:52:54 +00:00
|
|
|
|
|
|
|
The following table shows how img2pdf handles different input depending on the
|
|
|
|
input file format and image color space.
|
|
|
|
|
|
|
|
| Format | Colorspace | Result |
|
|
|
|
| -------------------- | ------------------------------ | ------------- |
|
|
|
|
| JPEG | any | direct |
|
|
|
|
| JPEG2000 | any | direct |
|
|
|
|
| PNG (non-interlaced) | any | direct |
|
2018-08-01 20:12:40 +00:00
|
|
|
| TIFF (CCITT Group 4) | monochrome | direct |
|
2018-07-18 13:52:54 +00:00
|
|
|
| any | any except CMYK and monochrome | PNG Paeth |
|
|
|
|
| any | monochrome | CCITT Group 4 |
|
|
|
|
| any | CMYK | flate |
|
|
|
|
|
2018-08-01 20:12:40 +00:00
|
|
|
For JPEG, JPEG2000, non-interlaced PNG and TIFF images with CCITT Group 4
|
|
|
|
encoded data, img2pdf directly embeds the image data into the PDF without
|
|
|
|
re-encoding it. It thus treats the PDF format merely as a container format for
|
|
|
|
the image data. In these cases, img2pdf only increases the filesize by the size
|
|
|
|
of the PDF container (typically around 500 to 700 bytes). Since data is only
|
|
|
|
copied and not re-encoded, img2pdf is also typically faster than other
|
|
|
|
solutions for these input formats.
|
2018-07-18 13:52:54 +00:00
|
|
|
|
|
|
|
For all other input types, img2pdf first has to transform the pixel data to
|
|
|
|
make it compatible with PDF. In most cases, the PNG Paeth filter is applied to
|
|
|
|
the pixel data. For monochrome input, CCITT Group 4 is used instead. Only for
|
|
|
|
CMYK input no filter is applied before finally applying flate compression.
|
2012-03-29 10:34:17 +00:00
|
|
|
|
2015-03-20 19:24:13 +00:00
|
|
|
Usage
|
|
|
|
-----
|
2012-03-29 10:34:17 +00:00
|
|
|
|
2015-05-10 12:35:09 +00:00
|
|
|
The images must be provided as files because img2pdf needs to seek in the file
|
|
|
|
descriptor.
|
2012-03-29 10:34:17 +00:00
|
|
|
|
2015-05-10 12:35:09 +00:00
|
|
|
If no output file is specified with the `-o`/`--output` option, output will be
|
2017-01-20 08:43:42 +00:00
|
|
|
done to stdout. A typical invocation is:
|
|
|
|
|
2018-08-01 20:13:58 +00:00
|
|
|
$ img2pdf img1.png img2.jpg -o out.pdf
|
2012-03-29 10:34:17 +00:00
|
|
|
|
2015-05-10 12:35:09 +00:00
|
|
|
The detailed documentation can be accessed by running:
|
2012-12-22 17:07:51 +00:00
|
|
|
|
2018-08-01 20:13:58 +00:00
|
|
|
$ img2pdf --help
|
2015-03-20 19:24:13 +00:00
|
|
|
|
2014-03-01 16:07:35 +00:00
|
|
|
Bugs
|
2012-03-29 09:11:23 +00:00
|
|
|
----
|
|
|
|
|
2018-08-01 20:13:58 +00:00
|
|
|
- If you find a JPEG, JPEG2000, PNG or CCITT Group 4 encoded TIFF file that,
|
|
|
|
when embedded into the PDF cannot be read by the Adobe Acrobat Reader,
|
|
|
|
please contact me.
|
2012-03-29 09:53:57 +00:00
|
|
|
|
2018-08-01 20:13:58 +00:00
|
|
|
- I have not yet figured out how to determine the colorspace of JPEG2000
|
|
|
|
files. Therefore JPEG2000 files use DeviceRGB by default. For JPEG2000
|
|
|
|
files with other colorspaces, you must explicitly specify it using the
|
|
|
|
`--colorspace` option.
|
2014-03-01 16:07:35 +00:00
|
|
|
|
2020-05-06 06:55:46 +00:00
|
|
|
- Input images with alpha channels are not allowed. PDF only supports
|
|
|
|
transparency using binary masks but is unable to store 8-bit transparency
|
|
|
|
information as part of the image itself. But img2pdf will always be lossless
|
|
|
|
and thus, input images must not carry transparency information.
|
2015-05-09 18:52:07 +00:00
|
|
|
|
2018-08-01 20:13:58 +00:00
|
|
|
- img2pdf uses PIL (or Pillow) to obtain image meta data and to convert the
|
|
|
|
input if necessary. To prevent decompression bomb denial of service attacks,
|
|
|
|
Pillow limits the maximum number of pixels an input image is allowed to
|
|
|
|
have. If you are sure that you know what you are doing, then you can disable
|
|
|
|
this safeguard by passing the `--pillow-limit-break` option to img2pdf. This
|
|
|
|
allows one to process even very large input images.
|
2015-05-10 12:24:12 +00:00
|
|
|
|
2014-03-01 16:07:35 +00:00
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
2018-07-18 13:52:54 +00:00
|
|
|
On a Debian- and Ubuntu-based systems, img2pdf can be installed from the
|
|
|
|
official repositories:
|
2015-03-07 01:58:44 +00:00
|
|
|
|
2018-07-18 13:52:54 +00:00
|
|
|
$ apt install img2pdf
|
2015-03-07 01:58:44 +00:00
|
|
|
|
2018-07-18 13:52:54 +00:00
|
|
|
If you want to install it using pip, you can run:
|
2014-03-01 16:07:35 +00:00
|
|
|
|
2017-01-28 18:09:03 +00:00
|
|
|
$ pip3 install img2pdf
|
2014-03-01 16:07:35 +00:00
|
|
|
|
2015-03-20 18:30:19 +00:00
|
|
|
If you prefer to install from source code use:
|
2014-03-01 16:07:35 +00:00
|
|
|
|
2014-06-27 20:31:21 +00:00
|
|
|
$ cd img2pdf/
|
2017-01-28 18:09:03 +00:00
|
|
|
$ pip3 install .
|
2014-03-01 16:07:35 +00:00
|
|
|
|
|
|
|
To test the console script without installing the package on your system,
|
2015-03-20 18:30:19 +00:00
|
|
|
use virtualenv:
|
2014-03-01 16:07:35 +00:00
|
|
|
|
2014-06-27 20:31:21 +00:00
|
|
|
$ cd img2pdf/
|
|
|
|
$ virtualenv ve
|
2017-01-28 18:09:03 +00:00
|
|
|
$ ve/bin/pip3 install .
|
2014-03-01 16:07:35 +00:00
|
|
|
|
|
|
|
You can then test the converter using:
|
|
|
|
|
2014-06-27 20:31:21 +00:00
|
|
|
$ ve/bin/img2pdf -o test.pdf src/tests/test.jpg
|
2014-03-01 16:07:35 +00:00
|
|
|
|
2019-08-25 05:02:50 +00:00
|
|
|
For Microsoft Windows users, PyInstaller based .exe files are produced by
|
|
|
|
appveyor. If you don't want to install Python before using img2pdf you can head
|
|
|
|
to appveyor and click on "Artifacts" to download the latest version:
|
|
|
|
https://ci.appveyor.com/project/josch/img2pdf
|
|
|
|
|
|
|
|
GUI
|
|
|
|
---
|
|
|
|
|
|
|
|
There exists an experimental GUI with all settings currently disabled. You can
|
|
|
|
directly convert images to PDF but you cannot set any options via the GUI yet.
|
|
|
|
If you are interested in adding more features to the PDF, please submit a merge
|
|
|
|
request. The GUI is based on tkinter and works on Linux, Windows and MacOS.
|
|
|
|
|
|
|
|
![](screenshot.png)
|
|
|
|
|
2020-04-05 10:15:09 +00:00
|
|
|
Library
|
|
|
|
-------
|
|
|
|
|
2015-03-20 18:30:19 +00:00
|
|
|
The package can also be used as a library:
|
2014-03-01 16:07:35 +00:00
|
|
|
|
2014-06-27 20:31:21 +00:00
|
|
|
import img2pdf
|
2015-01-15 05:19:18 +00:00
|
|
|
|
2017-01-20 08:14:36 +00:00
|
|
|
# opening from filename
|
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert('test.jpg'))
|
|
|
|
|
|
|
|
# opening from file handle
|
|
|
|
with open("name.pdf","wb") as f1, open("test.jpg") as f2:
|
|
|
|
f1.write(img2pdf.convert(f2))
|
|
|
|
|
|
|
|
# using in-memory image data
|
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert("\x89PNG...")
|
|
|
|
|
|
|
|
# multiple inputs (variant 1)
|
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert("test1.jpg", "test2.png"))
|
|
|
|
|
|
|
|
# multiple inputs (variant 2)
|
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert(["test1.jpg", "test2.png"]))
|
|
|
|
|
2020-03-16 15:06:44 +00:00
|
|
|
# convert all files ending in .jpg inside a directory
|
|
|
|
dirname = "/path/to/images"
|
2021-03-09 16:35:23 +00:00
|
|
|
imgs = []
|
|
|
|
for fname in os.listdir(dirname):
|
|
|
|
if not fname.endswith(".jpg"):
|
|
|
|
continue
|
|
|
|
path = os.path.join(dirname, fname)
|
|
|
|
if os.path.isdir(path):
|
|
|
|
continue
|
|
|
|
imgs.append(path)
|
2020-03-16 15:06:44 +00:00
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert(imgs))
|
|
|
|
|
|
|
|
# convert all files ending in .jpg in a directory and its subdirectories
|
|
|
|
dirname = "/path/to/images"
|
2021-03-09 16:35:23 +00:00
|
|
|
imgs = []
|
|
|
|
for r, _, f in os.walk(dirname):
|
|
|
|
for fname in f:
|
|
|
|
if not fname.endswith(".jpg"):
|
|
|
|
continue
|
|
|
|
imgs.append(os.path.join(r, fname))
|
2020-03-16 15:06:44 +00:00
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert(imgs))
|
|
|
|
|
|
|
|
|
|
|
|
# convert all files matching a glob
|
|
|
|
import glob
|
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert(glob.glob("/path/to/*.jpg")))
|
|
|
|
|
2017-01-20 08:14:36 +00:00
|
|
|
# writing to file descriptor
|
|
|
|
with open("name.pdf","wb") as f1, open("test.jpg") as f2:
|
|
|
|
img2pdf.convert(f2, outputstream=f1)
|
|
|
|
|
|
|
|
# specify paper size (A4)
|
|
|
|
a4inpt = (img2pdf.mm_to_pt(210),img2pdf.mm_to_pt(297))
|
|
|
|
layout_fun = img2pdf.get_layout_fun(a4inpt)
|
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert('test.jpg', layout_fun=layout_fun))
|
2018-08-01 20:13:58 +00:00
|
|
|
|
2021-05-07 09:20:47 +00:00
|
|
|
# use a fixed dpi of 300 instead of reading it from the image
|
|
|
|
dpix = dpiy = 300
|
|
|
|
layout_fun = img2pdf.get_fixed_dpi_layout_fun((dpix, dpiy))
|
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert('test.jpg', layout_fun=layout_fun))
|
|
|
|
|
|
|
|
# create a PDF/A-1b compliant document by passing an ICC profile
|
|
|
|
with open("name.pdf","wb") as f:
|
|
|
|
f.write(img2pdf.convert('test.jpg', pdfa="/usr/share/color/icc/sRGB.icc"))
|
|
|
|
|
2018-08-01 20:13:58 +00:00
|
|
|
Comparison to ImageMagick
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
Create a large test image:
|
|
|
|
|
|
|
|
$ convert logo: -resize 8000x original.jpg
|
|
|
|
|
|
|
|
Convert it into PDF using ImageMagick and img2pdf:
|
|
|
|
|
|
|
|
$ time img2pdf original.jpg -o img2pdf.pdf
|
|
|
|
$ time convert original.jpg imagemagick.pdf
|
|
|
|
|
|
|
|
Notice how ImageMagick took an order of magnitude longer to do the conversion
|
|
|
|
than img2pdf. It also used twice the memory.
|
|
|
|
|
|
|
|
Now extract the image data from both PDF documents and compare it to the
|
|
|
|
original:
|
|
|
|
|
|
|
|
$ pdfimages -all img2pdf.pdf tmp
|
|
|
|
$ compare -metric AE original.jpg tmp-000.jpg null:
|
|
|
|
0
|
|
|
|
$ pdfimages -all imagemagick.pdf tmp
|
|
|
|
$ compare -metric AE original.jpg tmp-000.jpg null:
|
|
|
|
118716
|
|
|
|
|
|
|
|
To get lossless output with ImageMagick we can use Zip compression but that
|
|
|
|
unnecessarily increases the size of the output:
|
|
|
|
|
|
|
|
$ convert original.jpg -compress Zip imagemagick.pdf
|
|
|
|
$ pdfimages -all imagemagick.pdf tmp
|
|
|
|
$ compare -metric AE original.jpg tmp-000.png null:
|
|
|
|
0
|
|
|
|
$ stat --format="%s %n" original.jpg img2pdf.pdf imagemagick.pdf
|
|
|
|
1535837 original.jpg
|
|
|
|
1536683 img2pdf.pdf
|
|
|
|
9397809 imagemagick.pdf
|
|
|
|
|
|
|
|
Comparison to pdfLaTeX
|
|
|
|
----------------------
|
|
|
|
|
|
|
|
pdfLaTeX performs a lossless conversion from included images to PDF by default.
|
|
|
|
If the input is a JPEG, then it simply embeds the JPEG into the PDF in the same
|
|
|
|
way as img2pdf does it. But for other image formats it uses flate compression
|
|
|
|
of the plain pixel data and thus needlessly increases the output file size:
|
|
|
|
|
|
|
|
$ convert logo: -resize 8000x original.png
|
|
|
|
$ cat << END > pdflatex.tex
|
|
|
|
\documentclass{article}
|
|
|
|
\usepackage{graphicx}
|
|
|
|
\begin{document}
|
|
|
|
\includegraphics{original.png}
|
|
|
|
\end{document}
|
|
|
|
END
|
|
|
|
$ pdflatex pdflatex.tex
|
|
|
|
$ stat --format="%s %n" original.png pdflatex.pdf
|
|
|
|
4500182 original.png
|
|
|
|
9318120 pdflatex.pdf
|
|
|
|
|
2020-04-05 10:15:53 +00:00
|
|
|
Comparison to podofoimg2pdf
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
Like pdfLaTeX, podofoimg2pdf is able to perform a lossless conversion from JPEG
|
|
|
|
to PDF by plainly embedding the JPEG data into the pdf container. But just like
|
|
|
|
pdfLaTeX it uses flate compression for all other file formats, thus sometimes
|
|
|
|
resulting in larger files than necessary.
|
|
|
|
|
|
|
|
$ convert logo: -resize 8000x original.png
|
|
|
|
$ podofoimg2pdf out.pdf original.png
|
|
|
|
stat --format="%s %n" original.png out.pdf
|
|
|
|
4500181 original.png
|
|
|
|
9335629 out.pdf
|
|
|
|
|
|
|
|
It also only supports JPEG, PNG and TIF as input and lacks many of the
|
|
|
|
convenience features of img2pdf like page sizes, borders, rotation and
|
|
|
|
metadata.
|
|
|
|
|
2018-08-01 20:13:58 +00:00
|
|
|
Comparison to Tesseract OCR
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
Tesseract OCR comes closest to the functionality img2pdf provides. It is able
|
|
|
|
to convert JPEG and PNG input to PDF without needlessly increasing the filesize
|
|
|
|
and is at the same time lossless. So if your input is JPEG and PNG images, then
|
|
|
|
you should safely be able to use Tesseract instead of img2pdf. For other input,
|
|
|
|
Tesseract might not do a lossless conversion. For example it converts CMYK
|
|
|
|
input to RGB and removes the alpha channel from images with transparency. For
|
|
|
|
multipage TIFF or animated GIF, it will only convert the first frame.
|
2020-04-05 10:15:53 +00:00
|
|
|
|