Update color space filter comment when create icc profile color space

This commit is contained in:
zhongwuzw 2019-02-27 19:50:37 +08:00
parent f023c9bb6c
commit 31856f3cdb
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@
colorSpaceRef = CGColorSpaceCreateWithICCProfile((__bridge CFDataRef)profileData);
WebPDemuxReleaseChunkIterator(&chunk_iter);
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);
if (model != kCGColorSpaceModelRGB) {
CGColorSpaceRelease(colorSpaceRef);