Page 1 of 1

How to achieve pixellate effect

Posted: 2007-08-29T10:38:16-07:00
by zygomatic
I want to apply the pixellate effect on http://www.pixer.us, can that be achieved with ImageMagick??

Re: How to achieve pixellate effect

Posted: 2007-08-29T11:03:24-07:00
by Bonzo
From one of Anthonys previous posts:
If you like the resize to 'pixelate' the image when enlarging set "-filter Pixel" or better still use the faster "-scale" resize operator.
I have seen an example of this somewhere probably on Anthonys example website.

Re: How to achieve pixellate effect

Posted: 2007-08-30T00:12:25-07:00
by zygomatic
I have searched that, but not found it. Can you direct me to where it is??

Re: How to achieve pixellate effect

Posted: 2007-08-30T09:10:23-07:00
by Bonzo
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

Posted: 2007-08-30T09:18:15-07:00
by zygomatic
thx will do!

Re: How to achieve pixellate effect

Posted: 2007-08-30T14:11:10-07:00
by zygomatic
I used -resize 10% -scale 1000% and that works ok.