Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Batch image editing

by mugwumpjism (Hermit)
on Jul 08, 2005 at 04:38 UTC ( [id://473320]=note: print w/replies, xml ) Need Help??


in reply to Batch image editing

Just today I was looking at this little Gimp-Perl plug-in I wrote, so that I could instantly save my .XCF gimp working files as .png with a single hotkey.

It's a very basic example, I guess to apply it to your problem you'd want to call the plug-in-color-map function (found in the DB Browser), uncomment the undo group bits and so on. Then just stick it in /usr/lib/gimp/2.0/plug-ins (or wherever your plug-ins directory is).

As others have pointed out, ImageMagick is normally the way to go for this sort of thing. But of course, gimp offers a much richer image manipulation toolkit, so mastering the gimp is a worthwhile goal.

use Gimp; use Gimp::Fu; #Gimp::set_trace(TRACE_ALL); register "pngify", "Save this image as a PNG", "Save this image as a PNG, so that you don't have to go throu +gh million s of dialogs.", "Sam Vilain", "Sam Vilain", "1.0", N_"<Image>/File/Save as PNG", "RGB*, GRAY*", [ ], sub { my($img,$drawable)=@_; my $fn = $img->get_filename; $img = $img->duplicate; #eval { $img->undo_group_start }; $drawable = $img->flatten; $fn =~ s{\.\w+}{.png} or die; $img->file_png_save_defaults($drawable, $fn, $fn); #eval { $img->undo_group_end }; undef; }; exit main;
$h=$ENV{HOME};my@q=split/\n\n/,`cat $h/.quotes`;$s="$h/." ."signature";$t=`cat $s`;print$t,"\n",$q[rand($#q)],"\n";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://473320]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-18 12:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found