Resize images and move them to another folder with specific name
Posted: 2015-05-20T23:35:40-07:00
i have this
works great
i need to change the output file name so instead of image.jpg it will be image_big.jpg
tried this:
but the i get the file name like this: image._big.jpg or something like this
so i tried convert command:
this does not work
this takes the image.jpg and the output is -0 without extenstion
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?
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?