mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-14 03:21:44 +03:00
Make TIFF strip size configurable
This commit is contained in:
parent
9025ae8332
commit
63879f04b1
|
@ -58,6 +58,7 @@ logger = logging.getLogger(__name__)
|
||||||
READ_LIBTIFF = False
|
READ_LIBTIFF = False
|
||||||
WRITE_LIBTIFF = False
|
WRITE_LIBTIFF = False
|
||||||
IFD_LEGACY_API = True
|
IFD_LEGACY_API = True
|
||||||
|
STRIP_SIZE = 65536
|
||||||
|
|
||||||
II = b"II" # little-endian (Intel style)
|
II = b"II" # little-endian (Intel style)
|
||||||
MM = b"MM" # big-endian (Motorola style)
|
MM = b"MM" # big-endian (Motorola style)
|
||||||
|
@ -1617,9 +1618,9 @@ def _save(im, fp, filename):
|
||||||
ifd[COLORMAP] = tuple(v * 256 for v in lut)
|
ifd[COLORMAP] = tuple(v * 256 for v in lut)
|
||||||
# data orientation
|
# data orientation
|
||||||
stride = len(bits) * ((im.size[0] * bits[0] + 7) // 8)
|
stride = len(bits) * ((im.size[0] * bits[0] + 7) // 8)
|
||||||
# aim for 64 KB strips when using libtiff writer
|
# aim for given strip size (64 KB by default) when using libtiff writer
|
||||||
if libtiff:
|
if libtiff:
|
||||||
rows_per_strip = min((2 ** 16 + stride - 1) // stride, im.size[1])
|
rows_per_strip = min(STRIP_SIZE // stride, im.size[1])
|
||||||
# JPEG encoder expects multiple of 8 rows
|
# JPEG encoder expects multiple of 8 rows
|
||||||
if compression == "jpeg":
|
if compression == "jpeg":
|
||||||
rows_per_strip = min(((rows_per_strip + 7) // 8) * 8, im.size[1])
|
rows_per_strip = min(((rows_per_strip + 7) // 8) * 8, im.size[1])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user