Is there a command-line utility for Linux that can pixelate an image by a specified percentage eg "-pixelate 30%"
|
I think the usual trick is to scale down so that you lose resolution and then scale up to magnify the low-res image. So with Imagemagick, something like this:
UPDATE: if you just want to be able to specify a single "pixelation amount" value, then the above command can be wrapped in a shell script as follows
If you then save the above script as
|
||||
|
|
If you have ruby installed this might be a possible option for you. See this gist https://gist.github.com/71598aeb1d823c9229ac It uses chunky_png to pixellate the image, so you may need to adapt the code slightly if you want to produce other file formats. For more information about it see this link http://codebrawl.com/contests/pixelizing-images-with-chunkypng Not sure how comfortable you with adapting code, but I could try to convert it into a simple command line application if you think it would be worthwhile. |
|||
|
|
So, if you know how to do this with the Gimp via the point-and-click interface then you can probably write batch-mode script to do the same thing on the command line: |
|||
|