RSS/Atom feed Twitter
Site is read-only, email is disabled

Mass Conversion

This discussion is connected to the gimp-user-list.gnome.org mailing list which is provided by the GIMP developers and not related to gimpusers.com.

This is a read-only list on gimpusers.com so this discussion thread is read-only, too.

4 of 4 messages available
Toggle history

Please log in to manage your subscriptions.

Mass Conversion Joseph A Nagy Jr 05 Nov 07:04
Mass Conversion David Hodson 05 Nov 13:41
Mass Conversion Geoffrey 05 Nov 14:42
Mass Conversion Joseph A Nagy Jr 05 Nov 17:03
Joseph A Nagy Jr
2002-11-05 07:04:30 UTC (over 21 years ago)

Mass Conversion

Hi all,

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!

David Hodson
2002-11-05 13:41:10 UTC (over 21 years ago)

Mass Conversion

Joseph A Nagy Jr wrote:

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.

You could try my batch plugin at: http://members.ozemail.com.au/~hodsond/dbp.html

Geoffrey
2002-11-05 14:42:10 UTC (over 21 years ago)

Mass Conversion

Joseph A Nagy Jr wrote:

Hi all,

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!

Check out ImageMagick, it can do cli conversion like:

!#/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

Joseph A Nagy Jr
2002-11-05 17:03:29 UTC (over 21 years ago)

Mass Conversion

Geoffrey wrote:

Joseph A Nagy Jr wrote:

Hi all,

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!

Check out ImageMagick, it can do cli conversion like:

!#/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

Thanks all, I just downloaded the batch conversion plug-in for GIMP.