Tools‎ > ‎

ImageMagick

ImageMagick is the best image manipulation toolbox, but it is command-line only.

Crop sidebar and convert all PNGs to JPGs

go.bat
for %%f in (*.png) do c "%%f" -quality 85 -crop "1903x+0+0" "t\%%f.jpg"


Comments