Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl # Take all in InRotation # Scale them down # Add the byline on top # Save them to done # Anything with a -c.png is a color pic, and should be save as a .jpg, + not a # .gif $|=1; use Image::Magick; $byline=Image::Magick->new; $byline->Read('StalagComicTitle.gif'); $from="./InRotaton"; $to="./done"; opendir(DIR,$from) || die "Something: $!"; @d = grep {/^\d+/} readdir(DIR); closedir(DIR); @d1=sort @d; # print @d1; # exit; while(@d1) { $f=shift @d1; print "Working on $f... "; $f =~ /^([^.]+)\./; $fo=$1; $color=0; $color++ if($f =~ /-c\.png$/); $fo .= ($color ? ".jpg" : ".gif" ); $img = Image::Magick->new; $img->Set(size=>"720x1024"); $img->ReadImage("null:white"); $src = Image::Magick->new; $src->Read("$from/$f"); $src->Resize(geometry=>"720x720",filter=>"Cubic",blur=>.5); ($w,$h)=$src->Get('width','height'); $h+=16; $img->Composite(compose=>'Replace',image=>$byline,x=>0,y=>0); $img->Composite(compose=>'Replace',image=>$src,x=>0,y=>16); $img->Crop(x=>0,y=>0,width=>$w,height=>$h); unless($color) { $img->Quantize(colors=>16); $img->Write("$to/temp.pgm"); system "ppmtogif $to/temp.pgm > $to/$fo"; } else { $img->Write("$to/$fo"); } print "done.\n"; }

In reply to Stalag '99 comic strip compiler by strredwolf

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 cooling their heels in the Monastery: (4)
As of 2024-03-29 11:48 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found