android:如何像Photoshop一样创建叠加混合?

发布于 2024-12-25 10:17:16 字数 126 浏览 0 评论 0原文

我正在我的 Android 应用程序中尝试实现叠加混合(如 Photoshop)。我尝试了不同的 PorterDuff.Modes(即 SCREEN、MYLTIPLY 等)和不同的组合,但无法达到完美的叠加效果。 有没有办法达到效果呢?

I am tring achive overlay blend (like photoshop)in my android application. I have tried differnt PorterDuff.Modes (i.e. SCREEN, MYLTIPLY etc) with differnt combinations but could not achive the perfect overlay effect.
Is there a way to achive effect?

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

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

发布评论

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

评论(1

夜司空 2025-01-01 10:17:16

您可以使用 PorterDuff 覆盖模式,如下所示。它将在 API 级别 11 或更高级别上工作。

 Compose.setXfermode(new android.graphics.PorterDuffXfermode(Mode.OVERLAY));

You can use PorterDuff overlay Mode as i shown below. It will work on the API level 11 or higher.

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