Merge pull request #5517 from kmilos/patch-1

Explicitly enable strip chopping for large uncompressed TIFFs
This commit is contained in:
Andrew Murray 2021-12-30 15:34:02 +11:00 committed by GitHub
commit 6565d5b1f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -543,7 +543,7 @@ ImagingLibTiffDecode(
Imaging im, ImagingCodecState state, UINT8 *buffer, Py_ssize_t bytes) {
TIFFSTATE *clientstate = (TIFFSTATE *)state->context;
char *filename = "tempfile.tif";
char *mode = "r";
char *mode = "rC";
TIFF *tiff;
uint16_t photometric = 0; // init to not PHOTOMETRIC_YCBCR
uint16_t compression;