You are not logged in.
Ive got a bunch of .dds files that i need to resize by about 50%, fantastic thing is the all have relatively long names and are all case sensitive.
Is it possible to use imagemagick to take all the .dds files I have in a directory resize them by 50% and then write the output to a jpg file with the exact same name?
convert -resize 50% *.dds
Only thing Im stuck on is the output
Offline
You could probably do something like this, or something a bit 'smarter':
for i in $(ls *.dds); do
convert -resize 50% $i $i
done
Offline
You could also use mogrify which is from the ImageMagick suite too.
mogrify -resize 50% *.dds
Offline