gpt4 book ai didi

image-processing - ImageMagick:如何将透明背景更改为颜色?

转载 作者:行者123 更新时间:2023-12-04 23:49:47 24 4
gpt4 key购买 nike

给定输入图像 sample.i.png透明背景:

enter image description here

如何将其背景转换为文件 sample.o.png有背景rgb(160,160,255) ,不透明度 100%(或 1)。

使用的答案:

convert source.png -background "rgb(160,160,255)" -flatten out.png 

请+1 emcconville 的回答!

最佳答案

来自 Mark Random's suggestion .使用您的颜色创建背景图像,并将源图像展平。

 convert -size 150x150 xc:"rgb(160,160,255)" source.png -layers flatten out.png

example

编辑
如果您不想担心图像大小,直接更改背景即可。
convert source.png -background "rgb(160,160,255)" -flatten out.png 

添加 -flatten重新设置背景颜色

关于image-processing - ImageMagick:如何将透明背景更改为颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25208116/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com