我想模仿Photoshop图层“柔光”在 iOS 中混合

发布于 2024-10-14 15:31:51 字数 98 浏览 1 评论 0原文

在 Photoshop 中,一个图层可以使用多种不同的方式与其下面的图层混合,即法线、溶解、变暗、柔光等。我想使用核心图形 api 在 iOS 中以编程方式复制此效果。有什么想法吗?

In Photoshop a layer can be blended with a layer below it using many different ways, ie Normal, Dissolve, Darken, Soft Light, etc. I would like to duplicate this effect programmatically in iOS using the core graphics api. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

海拔太高太耀眼 2024-10-21 15:31:51

您不能在 CALayers 之间应用不同的混合模式(至少在 iOS 上),但如果您正在实现 -drawRect: 或以其他方式创建图像,您当然可以使用 kCGBlendModeSoftLight 进行柔光混合CoreGraphics 混合模式。

You can't apply different blending modes between CALayers (at least, on iOS), but if you're implementing -drawRect: or otherwise creating an image, you can certainly use soft light blending with the kCGBlendModeSoftLight CoreGraphics blend mode.

吾家有女初长成 2024-10-21 15:31:51

我刚刚在这里发布的项目中有一个在 iOS 中使用 Core Graphics 进行图层混合的示例: https:// /github.com/esilverberg/ios-image-filters

到目前为止我只实现了叠加混合。

There is an example of layer blending in iOS using Core Graphics in the project I just posted here: https://github.com/esilverberg/ios-image-filters

I only implemented overlay blending so far.

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