first of all, i messed up the sample. sry for that *selfslap*
i've done some more testing and i get different results depending on how i process the images.
if i process a single image that is (240dpi) i get two output files, name-0.jpg and name-1.jpg.'-0' being correct cropped and '-1' is with the hidden area.
if i convert the image to 72dpi first in photoshop i still get two output files but both are cropped correct.
now with batch convert i get only one output which is the wrong cropped one. i assume the second written image overwrites the first one which would have been correct.
here is my batch script:
Code: Select all
convert.exe *.psd -resize 1000x1000 -quality 80% -density 72x72 -set filename:f %t_tmb %[filename:f].jpg
here the for the single image:
Code: Select all
convert.exe name.psd -resize 1000x1000 -quality 80% -density 72x72 name.jpg
it also seems that on smaller images the it saves out both images with the correct crop so i guess it also has to do with the image size. so here a full test image (80mb): *edit* removed, solution found below!
is it possible to tell imagemagick to write only the correct cropped one which would be the first of the two?