Update color space filter comment when create icc profile color space
This commit is contained in:
parent
d53056bfaa
commit
f526d88969
|
@ -435,7 +435,7 @@
|
||||||
colorSpaceRef = CGColorSpaceCreateWithICCProfile((__bridge CFDataRef)profileData);
|
colorSpaceRef = CGColorSpaceCreateWithICCProfile((__bridge CFDataRef)profileData);
|
||||||
WebPDemuxReleaseChunkIterator(&chunk_iter);
|
WebPDemuxReleaseChunkIterator(&chunk_iter);
|
||||||
if (colorSpaceRef) {
|
if (colorSpaceRef) {
|
||||||
// `CGImageCreate` does not support colorSpace other than RGB (such as Monochrome), we must filter the colorSpace mode
|
// We use RGB color model to decode WebP images currently, so we must filter out other colorSpace
|
||||||
CGColorSpaceModel model = CGColorSpaceGetModel(colorSpaceRef);
|
CGColorSpaceModel model = CGColorSpaceGetModel(colorSpaceRef);
|
||||||
if (model != kCGColorSpaceModelRGB) {
|
if (model != kCGColorSpaceModelRGB) {
|
||||||
CGColorSpaceRelease(colorSpaceRef);
|
CGColorSpaceRelease(colorSpaceRef);
|
||||||
|
|
Loading…
Reference in New Issue