我如何反转 UIImageView?
大家好! 我将黑白图像加载到 UIImageView 中,但我不知道如何使用按钮反转颜色。
我用以下代码加载图像:
ImageView.image = [UIImage imageNamed:@"image.png"];
有人知道吗?
感谢您的帮助!
Hy everybody!
I load black and white image to UIImageView
and i don't know how can i invert the colors with a button.
I load the image with this code:
ImageView.image = [UIImage imageNamed:@"image.png"];
Anyone know that?
Thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在 UIImage 方法中使用不同的混合模式:
我实际上没有使用过它,但也许其中一种模式会给您所需的结果。
Try playing with differnt blend modes in the UIImage method:
I haven't actually used it but maybe one of the modes will give you the result you need.