Update color space filter comment when create icc profile color space

This commit is contained in:
DreamPiggy 2019-04-01 21:18:15 +08:00
parent d53056bfaa
commit f526d88969
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,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);