TIFFTAG_PREDICTOR is not supported for WebP
fixes #158
https://gitlab.com/libtiff/libtiff/-/issues/158
this bug was introduced by 9eacd59fec
merge request !32
This commit is contained in:
parent
e95584d3b8
commit
54ce8c5220
@ -1236,10 +1236,6 @@ _TIFFCheckFieldIsValidForCodec(TIFF *tif, ttag_t tag)
|
||||
if (tag == TIFFTAG_LERC_PARAMETERS)
|
||||
return 1;
|
||||
break;
|
||||
case COMPRESSION_WEBP:
|
||||
if (tag == TIFFTAG_PREDICTOR)
|
||||
return 1;
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -741,11 +741,12 @@ tiffcp(TIFF* in, TIFF* out)
|
||||
case COMPRESSION_DEFLATE:
|
||||
case COMPRESSION_LZMA:
|
||||
case COMPRESSION_ZSTD:
|
||||
case COMPRESSION_WEBP:
|
||||
if (predictor != (uint16)-1)
|
||||
TIFFSetField(out, TIFFTAG_PREDICTOR, predictor);
|
||||
else
|
||||
CopyField(TIFFTAG_PREDICTOR, predictor);
|
||||
/*fallthrough*/
|
||||
case COMPRESSION_WEBP:
|
||||
if (preset != -1) {
|
||||
if (compression == COMPRESSION_ADOBE_DEFLATE
|
||||
|| compression == COMPRESSION_DEFLATE)
|
||||
|
Loading…
Reference in New Issue
Block a user