I'm about to run a batch on converting 300ppi tiff files to a bunch of jpg's at 400ppi, but somehow that doesn't work for the following command:
Code: Select all
convert -units PixelsPerInch input.tif -quiet -gravity West -crop 51.0000x100%+0+0 -quality 95 -unsharp 0.8x1.1+0.8+0 +profile 8bim -density 400 output.jpg
Code: Select all
convert -units PixelsPerInch input.tif +profile "8bim" -density 400 output.jpg