如何使用ImageMagick将图像转换为更少的像素化

时间:2013-12-17 07:04:54

标签: image image-processing imagemagick

我希望使用ImageMagic以较少的像素转换图像,然后尝试使用

convert -resize 20x20 -flop -gaussian-blur 1x5 -scale 100%-scale 500%-colorspace grey -quantize sRGB + dither /png.png /sam_pic.png

它看起来像下图:

enter image description here

但我想增加Image with less pixel

的像素大小

请建议我如何操作并修改命令。

1 个答案:

答案 0 :(得分:1)

我得到了解决方案。

仅更改尺寸并增加比例

convert -resize 18x18 -flop -gaussian-blur 1x5 -scale 110% -scale 500% -colorspace gray  /png.png /sam_pic.png

enter image description here