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

Autoconvert photo files

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.

5 of 5 messages available
Toggle history

Please log in to manage your subscriptions.

Autoconvert photo files EyeLand 11 Sep 09:55
  Autoconvert photo files Alexandre Prokoudine 11 Sep 09:58
   Autoconvert photo files Steve Kinney 11 Sep 10:55
    Autoconvert photo files Alexandre Prokoudine 11 Sep 11:05
     Autoconvert photo files Steve Kinney 11 Sep 12:34
EyeLand
2012-09-11 09:55:18 UTC (over 12 years ago)

Autoconvert photo files

Hello, how can autoconvert many photo files from eps to jpg with GIMP? Thank you!

Alexandre Prokoudine
2012-09-11 09:58:33 UTC (over 12 years ago)

Autoconvert photo files

On Tue, Sep 11, 2012 at 1:55 PM, EyeLand wrote:

Hello, how can autoconvert many photo files from eps to jpg with GIMP?

Mmm... Photo files in EPS? That's a novel thing :)

Depends of the operating system you are on. Any clues?

Alexandre Prokoudine http://libregraphicsworld.org

Steve Kinney
2012-09-11 10:55:44 UTC (over 12 years ago)

Autoconvert photo files

On 09/11/2012 05:58 AM, Alexandre Prokoudine wrote:

On Tue, Sep 11, 2012 at 1:55 PM, EyeLand wrote:

Hello, how can autoconvert many photo files from eps to jpg with GIMP?

Mmm... Photo files in EPS? That's a novel thing :)

Depends of the operating system you are on. Any clues?

On Linux or anything GNU compatible, Imagemagick should do the trick. You might also want to make sure that ghostscript is installed, just in case Imagemagick needs it to read EPS - I'm not certain as I always seem to already have both installed when things like this come up.

Once the necessary tools are on boar,d open a terminal in the directory where the eps files are and do the command:

convert *.eps [name].jpg

Your output files will come out named [name]-0.jpg, [name]-1.jpg, through [name]-n.jpg. If the default DPI & compression do not work for you, check the Imagemagick docs for usage of the -density and -quality switches.

If managing the file names is a major issue, you might want to use a "for" script - see sample below - that feeds the files to Imagemagick one at a time and tells it to name them after the originals. (Adapted from another script, not tested, no guarantees!)

On a Microsoft platform, you should be able to install Imagemagick in Cygwin - if it's worth the bother. Since you have a "lof" of files to process, it probably will be.

:o)

Steve

#!/bin/sh # Requires: Imagemagick and (maybe) ghostscript. # To batch convert EPS to JPG, save this text as an .scr # file, make executable, and run in same directory as files:

for f in *.eps; do
echo "Processing $f"
convert "$f" "${f%.eps}.jpg"
done

Alexandre Prokoudine
2012-09-11 11:05:12 UTC (over 12 years ago)

Autoconvert photo files

On Tue, Sep 11, 2012 at 2:55 PM, Steve Kinney wrote:

On a Microsoft platform, you should be able to install Imagemagick in Cygwin - if it's worth the bother. Since you have a "lof" of files to process, it probably will be.

Steve,

This is an overkill. Just install Phatch ;)

http://photobatch.stani.be/download/index.html

Alexandre Prokoudine http://libregraphicsworld.org

Steve Kinney
2012-09-11 12:34:19 UTC (over 12 years ago)

Autoconvert photo files

On 09/11/2012 07:05 AM, Alexandre Prokoudine wrote:

On Tue, Sep 11, 2012 at 2:55 PM, Steve Kinney wrote:

On a Microsoft platform, you should be able to install Imagemagick in Cygwin - if it's worth the bother. Since you have a "lof" of files to process, it probably will be.

Steve,

This is an overkill. Just install Phatch ;)

http://photobatch.stani.be/download/index.html

Well dang! Ya learn something every day... which is one of the main reasons I hang out here!

:o)