Merge pull request #5505 from radarhere/typo

Fixed typo
This commit is contained in:
mergify[bot] 2021-05-19 14:41:12 +00:00 committed by GitHub
commit f0e1f03905
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -672,7 +672,7 @@ ImagingLibTiffDecode(
readAsRGBA = photometric == PHOTOMETRIC_YCBCR;
if (readAsRGBA && compression == COMPRESSION_JPEG && planarconfig == PLANARCONFIG_CONTIG) {
// If using new JPEG compression, let libjpeg do RGB convertion for performance reasons
// If using new JPEG compression, let libjpeg do RGB conversion for performance reasons
TIFFSetField(tiff, TIFFTAG_JPEGCOLORMODE, JPEGCOLORMODE_RGB);
readAsRGBA = 0;
}