ios – 如何在swift中找到UIImage中单个像素的颜色

ios – 如何在swift中找到UIImage中单个像素的颜色,第1张

概述我有以下快速代码. let resolution = [imageView.frame.size.width, imageView.frame.size.height]for x in 0...Int(resolution[0]) { for y in 0...Int(resolution[1]) { let coordinate = [x, y] // 我有以下快速代码.

let resolution = [imageVIEw.frame.size.wIDth,imageVIEw.frame.size.height]for x in 0...Int(resolution[0]) {    for y in 0...Int(resolution[1]) {        let coordinate = [x,y]        //Find the colour of the pixel here    }}

我希望能够找到照片中每个像素显示的颜色.有没有办法修改我放置的代码“//在这里找到像素的颜色”,以便在常量坐标表示的坐标处打印像素的RGB值?

解决方法 您可以尝试以下方法:

var pixel : [UInt8] = [0,0]var colorSpace = CGcolorSpaceCreateDeviceRGB()let bitmAPInfo = CGBitmAPInfo(CGImageAlphaInfo.PremultiplIEdLast.rawValue)let context = CGBitmapContextCreate(UnsafeMutablePointer(pixel),1,8,4,colorSpace,bitmAPInfo)

希望这可以帮助!!

总结

以上是内存溢出为你收集整理的ios – 如何在swift中找到UIImage中单个像素的颜色全部内容,希望文章能够帮你解决ios – 如何在swift中找到UIImage中单个像素的颜色所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1061383.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存