image tool

Is there any program for multiple image resize in openSUSE?

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Like a way to script resizing? ImageMagick has the ‘convert’ command.
Check out its manpage.

Good luck.

Growlboy wrote:
> Is there any program for multiple image resize in openSUSE?
>
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJK3OP1AAoJEF+XTK08PnB5HFUP/iuEEUhzntMTU7frn6wZ18ks
PoBZmNDfGAklbuZpFDgRcqHaoGy9Z7kv3LLyo1DvJvo3XWpapBA8D3SfIKjID5pr
1LXH7c4GhU3+9rLPHWrIr0GrT9aVRftjdcZHjCV+N6wP3W1q6SWtqHvUtjAfVwEV
NXCZbzzNifp2T1r06xXM7DW4OuVA/ReH2SoI+tRpn14VIgzVLvz+UgB5ZeawNFL1
EMGxC0nDoBP2ClM0EVCaxgaXrQcd6yUFv4kdXcqE2RVtCEGmPKIQrfHx5V8iS9sZ
N96EeGJfXsvntypaJ/OaG/SThzDuzM9c0cj12V1RhSCG/AiIMms7xK75nk81pN2H
6hRRZyzTDM8GwrszuNkneXnTp39xyrY7lsHbK5XoGq94ElOqadJMhu5T4NGsLxTJ
ZcMcBHErzpSr+FmL/Npdwbg9wxzrWFE6vSZA0oInLH0Tg4HwZSJL8+3R0BaqgsLV
sE8voUdOg56gD94t5fCpC8G4rwa9JI0JUCloj/MoDVhkRJI9t18Itpti6a7TTMLm
uHqfyTWsAddwzaWXkSBr9jGLxN2z3dmGpggbuvLwGmBHRAkPI4IsMbQW0I9uhrtR
4QWmoFDvD8UJntrpSkoIEG7Gag3B3MVK+I4gEOo7/AA3NlWcZPhDV/jpVoixzh5n
maYvuBJjzKpIcJNECSHD
=v+Z1
-----END PGP SIGNATURE-----

Yes, I package a program called converseen which can do such things. It’s in my repo (see sig). Note it is still very young so it may have a few problems

Thank you people for your replyes. I didn’t succeded with imagemagick. This converseen is great. That’s exactly what I was looking for.

I didn’t succeded with imagemagick.

I’m using the ‘convert’ utility all the time. It is part of some bash scripts I’m using to create webpages. What is the problem you encounter?

As an example for useage of ‘convert’ this is a snippet from one of my scripts calling convert to reduce image size:

convert $INFILE -resize 18.1818% -quality 70 $OUTFILE

B.t.w. both files are *.jpg in my case. There is good online documentation of the numerous options here: ImageMagick: Command-line Tools: Convert