How to achieve pixellate effect
How to achieve pixellate effect
I want to apply the pixellate effect on http://www.pixer.us, can that be achieved with ImageMagick??
Re: How to achieve pixellate effect
From one of Anthonys previous posts:
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.
Re: How to achieve pixellate effect
I have searched that, but not found it. Can you direct me to where it is??
Re: How to achieve pixellate effect
From memory you want to resize the image smaller then scale it up. You will need to play around with this code.
Code: Select all
convert original.jpg -resize 20x20 -scale 200 new.jpg
Re: How to achieve pixellate effect
I used -resize 10% -scale 1000% and that works ok.