如何设置 UIImage 像素的 RGBA 颜色
我正在寻找为我的 Iphone 应用程序设置(更改)UIImage 像素的 RGBA 颜色的可能性。 (我实际上想实现一些洪水填充的东西)
所以我需要这样的东西:
-(void) setPixelColorOfImage: (UIImage*) img atXCord: (int) x atYCord: (int) y
withRedColor: (CGFloat) red blueColor: (CGFloat) blue greenColor: (CGFloat) green
alpha: (CGFloat) alpha {
// need some code her
}
因为这个方法会被经常调用,所以它不应该太慢。
请帮忙。
I am looking for a possibility to set (change) the RGBA color of a Pixel of an UIImage for my Iphone Application. (I actually want to implement some floodfill stuff)
So I need something like this:
-(void) setPixelColorOfImage: (UIImage*) img atXCord: (int) x atYCord: (int) y
withRedColor: (CGFloat) red blueColor: (CGFloat) blue greenColor: (CGFloat) green
alpha: (CGFloat) alpha {
// need some code her
}
Because this method will be called quite often, it shouldn't be too slow.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
UIImage 不是(外部)可变的,因此您必须复制,然后编辑,然后转换为 UIImage。
复制
编辑
转换为 UIImage
fwiw 创建一个新的 UIImage,该形式也可以在 osx 上使用(使用 NSImage)。
UIImage is not (externally) mutable, so you must copy, then edit, then convert to UIImage.
Copy
Edit
Convert to UIImage
fwiw, the form can also be used on osx (using NSImage).