Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found