我如何反转 UIImageView?

发布于 2024-10-31 20:09:41 字数 182 浏览 2 评论 0原文

大家好! 我将黑白图像加载到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

追星践月 2024-11-07 20:09:42

尝试在 UIImage 方法中使用不同的混合模式:

- (void)drawAtPoint:(CGPoint)point blendMode:(CGBlendMode)blendMode alpha:(CGFloat)alpha

我实际上没有使用过它,但也许其中一种模式会给您所需的结果。

Try playing with differnt blend modes in the UIImage method:

- (void)drawAtPoint:(CGPoint)point blendMode:(CGBlendMode)blendMode alpha:(CGFloat)alpha

I haven't actually used it but maybe one of the modes will give you the result you need.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文