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