01.11.2016, 21:47
For batch processing, it is easiest to use ImageMagick:
FOR /R %%a IN (*.png) DO [path]\ImageMagick-6.8.9-7\convert -resize 144x144 -filter catrom "%%~a" "%%~dpna.gif"
You may want to apply different filters but catrom seems the best.
FOR /R %%a IN (*.png) DO [path]\ImageMagick-6.8.9-7\convert -resize 144x144 -filter catrom "%%~a" "%%~dpna.gif"
You may want to apply different filters but catrom seems the best.