Increase image size without interpolation
Posted: 2009-04-08T17:16:32-07:00
Does anyone know how to turn off interpolation (resulting in each pixel simply being copied around itself multiple times)?
If I do this
it uses some default interpolation. I can specify an interpolation like this:
But there is no option for "none". Anyone know an argument to do this?
Thanks,
Dave
If I do this
Code: Select all
convert -resize 5000% Small.jpg Big.jpg
Code: Select all
convert -resize 5000% -interpolate Average Small.jpg Big.jpg
Thanks,
Dave