透明 PNG 图像看起来不太好看

发布于 2024-09-16 16:50:37 字数 118 浏览 5 评论 0原文

我有一个图像,其周围有相当大的阴影,并且其背景是透明的。我已将其从 Photoshop 保存为 PNG 文件,并通过 xml 在 ImageView 中使用它。这会导致阴影产生条带效果,看起来不太好。不太确定该怎么办...

I have an image that has a fairly large shadow around it and its background is transparent. I have saved it as a PNG file from photoshop and am using it in an ImageView through xml. This results in the shadow having a banding effect and just doesn't look nice. Not too sure what to do...

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

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

发布评论

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

评论(3

快乐很简单 2024-09-23 16:50:37

只需添加

// set 32 bit window (draw correctly transparent images)
getWindow().getAttributes().format = android.graphics.PixelFormat.RGBA_8888;

onCreate(...)

http://www. curly-creature.org/2010/12/08/bitmap-quality-banding-and-dithering/

Just add

// set 32 bit window (draw correctly transparent images)
getWindow().getAttributes().format = android.graphics.PixelFormat.RGBA_8888;

in onCreate(...)

http://www.curious-creature.org/2010/12/08/bitmap-quality-banding-and-dithering/

甜味拾荒者 2024-09-23 16:50:37

我不记得这个属性是用来做什么的,但我认为它是一个 ImageView。

尝试使用 android:dither="true" 作为 ImageView xml 声明的一部分,看看是否有帮助。

I can't remember what this property was used on, but I think it was an ImageView.

Try using android:dither="true" as part of the ImageView xml declaration and see if that helps.

吾性傲以野 2024-09-23 16:50:37

我不记得在哪里读过它,但在开发者网站上的某个地方有这个修复渐变带的建议;它也可能对阴影有帮助。右键单击有阴影的图层上的效果图标,然后单击“创建图层”为阴影创建一个单独的图层。然后使用以下设置将“添加杂色...”过滤器应用到图层:

(以防图像消失,数量:0.5%,均匀,单色)

I can't remember where I read it, but on the developer site somewhere there was this suggestion for fixing gradient banding; it might help with the shadow as well. Right click the effects icon on the layer that has the shadow, and click "Create Layer" to make a separate layer for the shadow. Then apply an "Add Noise..." filter to the layer with the following settings:

(in case the image ever disappears, Amount:0.5%, Uniform, Monochromatic)

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