How to achieve pixellate effect
Posted: 2007-08-29T10:38:16-07:00
I want to apply the pixellate effect on http://www.pixer.us, can that be achieved with ImageMagick??
Use https://github.com/ImageMagick/ImageMagick/discussions instead.
https://imagemagick.com/discourse-server/
https://imagemagick.com/discourse-server/viewtopic.php?t=9572
I have seen an example of this somewhere probably on Anthonys example website.If you like the resize to 'pixelate' the image when enlarging set "-filter Pixel" or better still use the faster "-scale" resize operator.
Code: Select all
convert original.jpg -resize 20x20 -scale 200 new.jpg