使用 imagemagick 转换为 png 的更好参数
我必须使用 imagemagick 将我的网站的 60px X 60px 图像转换为 png。 转换 image.jpg image.png 但它返回一个 4kbyte 大小的图像。 我想要一个大约 1kbyte 的大小。
我该怎么办?
谢谢
i have to convert 60px X 60px images to png for my web site with imagemagick.
convert image.jpg image.png
But it's return an image with 4kbyte size.
I want get a size around 1kbyte.
How can i do?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
压缩级别由
-quality
参数控制,请查看 此处了解更多信息。如果您只有少于 256 色的图像,请使用-format PNG8
来节省一些字节。并尝试添加类型优化
。Compression level is controlled by the
-quality
parameter, look here for more information. If you are only having images with less than 256 colors, use-format PNG8
to save some bytes. And try to add-type optimize
.