UIImage 특정 색상을 투명처리
UIImage 특정 색상을 투명처리하고 싶을 때 사용하는 방법이다 - (UIImage *)changeWhiteColorTransparent:(UIImage *)image { CGImageRef rawImageRef= image.CGImage; const float colorMasking[6] = {222, 255, 222, 255, 222, 255}; // 흰색 // const float colorMasking[6] = {0, 0, 0, 0, 0, 0}; // 검정색 UIGraphicsBeginImageContext(image.size); CGImageRef maskedImageRef = CGImageCreateWithMaskingColors(rawImageRef, colorMasking); { //if..