iOS-CoreGraphics学习(彩色图片转灰白图片)

CoreGraphics的功能非常强大,可以绘制出各种图形,其中,强大的核心动画 Core Animation 都是基于 CoreGraphics 实现的;

iOS-CoreGraphics学习(彩色图片转灰白图片)_第1张图片

利用 CoreGraphics 将彩色图片转灰白图片事例

原始图片

iOS-CoreGraphics学习(彩色图片转灰白图片)_第2张图片

转化为灰色图片

iOS-CoreGraphics学习(彩色图片转灰白图片)_第3张图片

核心代码

/** * 普通图片转位灰白图片 * *  @param image 普通图片 * *  @return 灰白图片 */
- (UIImage *)grayImage:(UIImage *)image{

    int width  = image.size.width;
    int height = image.size.height;

    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray();

    CGContextRef context = CGBitmapContextCreate(nil,
                                                 width,
                                                 height,
                                                 8, // bits per component
                                                 0,
                                                 colorSpace,
                                                 kCGBitmapByteOrderDefault);

    CGColorSpaceRelease(colorSpace);

    if (context == NULL) {

        return nil;
    }

    CGContextDrawImage(context,
                       CGRectMake(0, 0, width, height), image.CGImage);
    CGImageRef imageRef   = CGBitmapContextCreateImage(context);
    UIImage *grayImage = [UIImage imageWithCGImage:imageRef];
    CFRelease(imageRef);
    CGContextRelease(context);

    return grayImage;
}

方法的调用和显示图片

- (void)viewDidLoad {
    [super viewDidLoad];
    // 获得普通图片
    UIImage *image = [UIImage imageNamed:iamgeName];
#pragma mark ----------------------------------------
    // 调用 方法将普通图片转换为灰白图片
    UIImage *grayImage = [self grayImage:image];
#pragma mark ----------------------------------------
    // 将 image 添加到 imageView 中
    UIImageView *imageView = [[UIImageView alloc] initWithImage:grayImage];
    // 根据图片宽度进行等比缩放适应屏幕的宽度
    imageView.contentMode = UIViewContentModeScaleAspectFit;
    // 显示大小等于屏幕的大小
    imageView.frame = self.view.bounds;

    [self.view addSubview:imageView];
}

你可能感兴趣的:(动画,图片,animation,graphics,uiimage)