forked from josch/img2pdf
release version 0.3.0
This commit is contained in:
parent
75c43de09d
commit
1aa71e3746
3 changed files with 10 additions and 2 deletions
|
@ -2,6 +2,14 @@
|
|||
CHANGES
|
||||
=======
|
||||
|
||||
0.3.0
|
||||
-----
|
||||
|
||||
- Store non-jpeg images using PNG compression
|
||||
- Support arbitrarily large pages via PDF /UserUnit field
|
||||
- Disallow input with alpha channel as it cannot be preserved
|
||||
- Add option --pillow-limit-break to support very large input
|
||||
|
||||
0.2.4
|
||||
-----
|
||||
|
||||
|
|
2
setup.py
2
setup.py
|
@ -3,7 +3,7 @@ from setuptools import setup
|
|||
|
||||
PY3 = sys.version_info[0] >= 3
|
||||
|
||||
VERSION = "0.2.4"
|
||||
VERSION = "0.3.0"
|
||||
|
||||
INSTALL_REQUIRES = (
|
||||
'Pillow',
|
||||
|
|
|
@ -32,7 +32,7 @@ import struct
|
|||
|
||||
PY3 = sys.version_info[0] >= 3
|
||||
|
||||
__version__ = "0.2.4"
|
||||
__version__ = "0.3.0"
|
||||
default_dpi = 96.0
|
||||
papersizes = {
|
||||
"letter": "8.5inx11in",
|
||||
|
|
Loading…
Reference in a new issue