Code: Select all
mogrify -resize 200 -path images/../test/ images/*.*
i need to change the output file name so instead of image.jpg it will be image_big.jpg
tried this:
Code: Select all
mogrify -resize 200 -format %t_big.%e -path images/../test/ images/*.*
so i tried convert command:
Code: Select all
convert images/*.jpg -resize 200 images/../test/
Code: Select all
convert images/*.jpg -resize 200 images/../test/*.*
if i change -0 to -0.jpg than i get the file i needed with the right extenstion
but now the -format is not working at all
what can be done?