Joseph A Nagy Jr wrote:
Hi all,Check out ImageMagick, it can do cli conversion like:
I'm on RH7.2 using Gimp 1.2.3 (waiting for that Gimp 1.3.x RPM to come out) and I want to convert every last jpg and bmp on my computer to and RGB png. Is there already a script out there to do that? If so, I haven't been able to find it via google or Gimp.org. TIA!
!#/bin/ksh
#converts all files named *.jpg and *.bmp to png format and names the #new file *.png
for $(find . \( -name '*.jpg' -o -name '*.bmp \) -print); do
convert $fn ${fn%.???}.png
done
--
Until later: Geoffrey [EMAIL PROTECTED]
I didn't have to buy my radio from a specific company to listen
to FM, why doesn't that apply to the Internet (anymore...)?
_______________________________________________
Gimp-user mailing list
[EMAIL PROTECTED]
http://lists.xcf.berkeley.edu/mailman/listinfo/gimp-user