Stop Microsoft

Operating Systems => Linux and UNIX => Topic started by: KernelPanic on 2 February 2003, 20:28

Title: Batch png resizing
Post by: KernelPanic on 2 February 2003, 20:28
I have about 20 png's that I need to resize a little smaller.

Just wondering what program would I use to shrink them and how would I put that into a bash script?
Title: Batch png resizing
Post by: flap on 2 February 2003, 20:44
convert.
Do you want them resized to a particular size or % of their current size?
Title: Batch png resizing
Post by: KernelPanic on 2 February 2003, 22:05
I have a particular size I need them to be (the same for all of them)
Title: Batch png resizing
Post by: flap on 2 February 2003, 22:19
If they're all in one directory, this will create smaller versions of the pngs but leave the original files:

for i in *.png; do convert "$i" -resize 50x50 "small$i"; done

Change the 50x50 to whatever dimensions you want, and "small$i" to the output filename you want (this will just prepend "small" to the start of the original filename)

Or, if you don't want to keep the original files, this will overwrite them with the smaller ones:

for i in *.png; do convert "$i" -resize 50x50 temp.png; mv temp.png "$i"; done
Title: Batch png resizing
Post by: KernelPanic on 2 February 2003, 22:57
Thanking you very much!
Title: Batch png resizing
Post by: preacher on 2 February 2003, 23:32


[ February 02, 2003: Message edited by: ThePreacher ]