Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找将图像背景(黑色)设置为透明的软件/工具。
我想去除所有的黑色并使图像透明。
所有图像都是 .PNG,我大约有 191 个,因此为什么我需要一个工具来制作多张图像,否则可能需要很长时间。
使用其中一个graphicsmagick或imagemagick mogrify带有-transparent black选项的工具。当我在您的单个示例图像上运行它时,它看起来像这样:
graphicsmagick
imagemagick
mogrify
-transparent black
gm mogrify -transparent black 'sprite sheet 4.png'
要执行其中的几百个,您可以像这样使用它:
for f in *.png ; do gm mogrify -transparent black "$f" ; done
一定要处理文件的副本—— mogrify“就地”修改文件。