Mac 上图片格式转换工具与方法

因为要制作 telegram 表情包

需要将图片 转化为 png 格式

brew install imagemagick 

convert 1.jpg 2.png

然后发觉 telegram 还有一个要求

The image file should be in PNG format with a transparent layer and must fit into a 512x512 square (one of the sides must be 512px and the other 512px or less).

所以 convert -resize 512x512 2.png 3.png

也可以两步合成一步

convert -resize 512x512 1.jpg 2.png

Last updated

Was this helpful?