Revert "Fixed Alpha chanel detection when decoding images."
This reverts commit e6ede1104c
.
This commit is contained in:
parent
ead67a6c9c
commit
1a360b6faf
|
@ -100,9 +100,7 @@ static SDWebImageDecoder *sharedInstance;
|
|||
CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
|
||||
CGImageAlphaInfo alphaInfo = CGImageGetAlphaInfo(imageRef);
|
||||
|
||||
BOOL imageHasAlphaInfo = (alphaInfo != kCGImageAlphaNone &&
|
||||
alphaInfo != kCGImageAlphaNoneSkipFirst &&
|
||||
alphaInfo != kCGImageAlphaNoneSkipLast);
|
||||
BOOL imageHasAlphaInfo = (alphaInfo != kCGImageAlphaNone);
|
||||
|
||||
int bytesPerPixel = imageHasAlphaInfo ? 4 : 3;
|
||||
CGBitmapInfo bitmapInfo = imageHasAlphaInfo ? kCGImageAlphaPremultipliedLast : kCGImageAlphaNone;
|
||||
|
|
Loading…
Reference in New Issue