• iOS 获取图片某一点的颜色对象(UIColor*)。





    - (UIColor *)colorAtPixel:(CGPoint)point {

        // Cancel if point is outside image coordinates

        if (!CGRectContainsPoint(CGRectMake(0.0f, 0.0f, self.size.width, self.size.height), point)) {

            return nil;

        }


        NSInteger pointX = trunc(point.x);

        NSInteger pointY = trunc(point.y);

        CGImageRef cgImage = self.CGImage;

        NSUInteger width = self.size.width;

        NSUInteger height = self.size.height;

        CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();

        int bytesPerPixel = 4;

        int bytesPerRow = bytesPerPixel * 1;

        NSUInteger bitsPerComponent = 8;

        unsigned char pixelData[4] = { 0, 0, 0, 0 };

        CGContextRef context = CGBitmapContextCreate(pixelData, 

                                                     1,

                                                     1,

                                                     bitsPerComponent, 

                                                     bytesPerRow, 

                                                     colorSpace,

                                                     kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);

        CGColorSpaceRelease(colorSpace);

        CGContextSetBlendMode(context, kCGBlendModeCopy);


        // Draw the pixel we are interested in onto the bitmap context

        CGContextTranslateCTM(context, -pointX, pointY-(CGFloat)height);

        CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, (CGFloat)width, (CGFloat)height), cgImage);

        CGContextRelease(context);

        

        // Convert color values [0..255] to floats [0.0..1.0]

        CGFloat red   = (CGFloat)pixelData[0] / 255.0f;

        CGFloat green = (CGFloat)pixelData[1] / 255.0f;

        CGFloat blue  = (CGFloat)pixelData[2] / 255.0f;

        CGFloat alpha = (CGFloat)pixelData[3] / 255.0f;

        return [UIColor colorWithRed:red green:green blue:blue alpha:alpha];

    }






    UIImage+ColorAtPixel.h
     
    #import <UIKit/UIKit.h>
    
    /*
     A category on UIImage that enables you to query the color value of arbitrary 
     pixels of the image.
     */
    @interface UIImage (ColorAtPixel)
    
    - (UIColor *)colorAtPixel:(CGPoint)point;
    
    @end
    
    
    #import <CoreGraphics/CoreGraphics.h>
    
    #import "UIImage+ColorAtPixel.h"
    
    
    @implementation UIImage (ColorAtPixel)
    
    - (UIColor *)colorAtPixel:(CGPoint)point {
        // Cancel if point is outside image coordinates
        if (!CGRectContainsPoint(CGRectMake(0.0f, 0.0f, self.size.width, self.size.height), point)) {
            return nil;
        }
    
        NSInteger pointX = trunc(point.x);
        NSInteger pointY = trunc(point.y);
        CGImageRef cgImage = self.CGImage;
        NSUInteger width = self.size.width;
        NSUInteger height = self.size.height;
        CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();
        int bytesPerPixel = 4;
        int bytesPerRow = bytesPerPixel * 1;
        NSUInteger bitsPerComponent = 8;
        unsigned char pixelData[4] = { 0, 0, 0, 0 };
        CGContextRef context = CGBitmapContextCreate(pixelData, 
                                                     1,
                                                     1,
                                                     bitsPerComponent, 
                                                     bytesPerRow, 
                                                     colorSpace,
                                                     kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
        CGColorSpaceRelease(colorSpace);
        CGContextSetBlendMode(context, kCGBlendModeCopy);
    
        // Draw the pixel we are interested in onto the bitmap context
        CGContextTranslateCTM(context, -pointX, pointY-(CGFloat)height);
        CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, (CGFloat)width, (CGFloat)height), cgImage);
        CGContextRelease(context);
        
        // Convert color values [0..255] to floats [0.0..1.0]
        CGFloat red   = (CGFloat)pixelData[0] / 255.0f;
        CGFloat green = (CGFloat)pixelData[1] / 255.0f;
        CGFloat blue  = (CGFloat)pixelData[2] / 255.0f;
        CGFloat alpha = (CGFloat)pixelData[3] / 255.0f;
        return [UIColor colorWithRed:red green:green blue:blue alpha:alpha];
    }
    
    @end
    
    



  • 相关阅读:
    ubuntu16.04截图工具Shutter安装,设置快捷键
    cd命令和roscd命令的区别,并解决环境变量问题
    ubuntu16.04+kinetic 环境下进行turtlebot2安装+gazebo7.16
    【转载】windows 下TexLive的安装和配置
    Linux 环境变量 /etc/profile 和 ~/.bashrc的区别和使用
    rotors无人机仿真(古月居)——问题记录
    操作select
    #if DEBUG
    (网上看的)asp.net使用uploadify上传出现的IO Error问题
    sqlserver2008附加sqlserver2005数据库目录出错,需要设置mdf后缀文件夹“管理员取得所有权”,并用windows管理权限登录数据库不要用sa
  • 原文地址:https://www.cnblogs.com/jhcelue/p/7227130.html
Copyright © 2020-2023  润新知