例如,假设我想用屏幕坐标(100,200)来检测像素的颜色.有没有办法做到这一点?
编辑 – 我现在不担心视网膜显示问题.
解决方法
这可能不是最直接的路线,但您可以:
>使用UIGraphicsBeginImageContextWithOptions来抓屏幕(参见Apple Q& A QA1703 – “Screen Capture in UIKit Applications”).
>然后使用CGImageCreateWithImageInRect来获取所需图像的部分.
>最后分析结果图像.在这一点上变得复杂,但是幸运的是现在有一个问题应该显示出来:How to get the RGB values for a pixel on an image on the iphone
或者,还有以下博客文章附带代码:What Color is My Pixel? Image based color picker on iPhone