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";

In reply to Re: Batch image editing by mugwumpjism
in thread Batch image editing by SavannahLion

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.