zoukankan      html  css  js  c++  java
  • iOS:给图片置灰色

    一、在iOS开发中,给图片置灰色这个功能经常会用到,例如商品展示时,商品过期或者下线了,那么图片就需要这个功能。下面这个方法就可以到达目的。

    /**
     UIImage:去色功能的实现(图片灰色显示)
     @param sourceImage 图片
     */
    - (UIImage *)grayImage:(UIImage *)sourceImage
    {
       int bitmapInfo = kCGImageAlphaNone;
       int width = sourceImage.size.width;
       int height = sourceImage.size.height;
       CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceGray();
       CGContextRef context = CGBitmapContextCreate (nil,width,height,8,0,colorSpace,bitmapInfo);
       CGColorSpaceRelease(colorSpace);
       if (context == NULL) {
           return nil;
       }
       CGContextDrawImage(context,CGRectMake(0, 0, width, height), sourceImage.CGImage);
       UIImage *grayImage = [UIImage imageWithCGImage:CGBitmapContextCreateImage(context)];
       CGContextRelease(context);
       return grayImage;
    }

    实现效果:

    之前:

    之后:

  • 相关阅读:
    hbase
    spark-streaming
    spark-Scala
    经典台词二
    星爷电影经典台词一
    Hadoop第一阶段总结
    测试2
    POI 表格数据导出
    GC垃圾回收机制
    Java常见的200道面试题
  • 原文地址:https://www.cnblogs.com/XYQ-208910/p/6432901.html
Copyright © 2011-2022 走看看