Here's an interpreter script that does what you want. The file names are expected from the command line, for instance from a shell glob.
#!/usr/bin/perl use Image::Magick; for (@ARGV) { my $p = Image::Magick->new(); $p->Read($_); s/\.[^.]+$/.jpeg/; $p->Write($_); }
After Compline,
Zaxo
In reply to Re: batch converting images with image::magick?
by Zaxo
in thread batch converting images with image::magick?
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |