1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Source: pypng
Section: python
Priority: optional
Maintainer: Sascha Steinbiss <satta@debian.org>
Build-Depends: debhelper-compat (= 13),
dh-python,
python3-all,
python3-setuptools
Standards-Version: 4.5.0
Rules-Requires-Root: no
Vcs-Git: https://salsa.debian.org/debian/pypng.git
Vcs-Browser: https://salsa.debian.org/debian/pypng
Homepage: https://github.com/drj11/pypng
Package: python3-png
Architecture: all
Depends: ${python3:Depends},
${misc:Depends}
Description: Pure Python PNG Reader/Writer (Python 3)
The PyPNG module implements support for PNG images. It reads and writes PNG
files with all allowable bit depths (1/2/4/8/16/24/32/48/64 bits per pixel) and
colour combinations: greyscale (1/2/4/8/16 bit); RGB, RGBA, LA (greyscale with
alpha) with 8/16 bits per channel; colour mapped images (1/2/4/8 bit).
Adam7 interlacing is supported for reading and writing. A number of optional
chunks can be specified (when writing) and understood (when reading): tRNS,
bKGD, gAMA.
.
PyPNG is not a high level toolkit for image processing (like PIL) and does not
aim at being a replacement or competitor. Its strength lies in fine-grained
extensive support of PNG features. It can also read and write Netpbm PAM files,
with a focus on its use as an intermediate format for implementing custom PNG
processing.
.
This package contains the Python 3 version.
|