Thank you, zentara!

Sorry, I wasn't paying attention (it was too late at night).

I changed ...

$img_mirror->flip( dir => "v" ); ## "h"
and...
#make a unified image #~__ my $img_uni = Imager->new(xsize=>$pos_width * 2,ysize=>$global_a +scent,channels=>4); #~__ $img_uni->paste(left=>$pos_width,top=>0,img=>$img1); #~__ $img_uni->paste(left=>0,top=>0,img=>$img_mirror); my $img_uni = Imager->new(xsize=>$pos_width ,ysize=>$global_ascent * +2,channels=>4); $img_uni->paste(left=>0,top=>$global_ascent,img=>$img_mirror); $img_uni->paste(left=>0,top=>0,img=>$img1);
To get the reflection that I was looking for.

Is it possible to overwrite the generated image with another one?

That is a Graphic Design technique to obtain sort of 3D characters that are easy to read on any background:

Or even, overwriting the text three times: step 1, then overwrite with y offset of 6 pixels down and offset x 10 pixels right and in black, and finally overwrite with y offset of 3 pixels down and offset x 5 pixels right in blue.

Then, in the mirror image it should be done in the opposite way: offset y up instead of down and offset x left instead of right.

A \ \ / | _ _| __ \ <-|-> \ \ \ / __ \ _ \ __| _ \ _` | __ `__ \ | / V \ \ \ / | | | __/ | __/ ( | | | | | _| \_/\_/ _| |_|\___|_| \___| \__,_|_| _| _| ___| _) /"\/"\ "| |"|/"""|"| /"""| /""`"|"| "| "| """| ") A / / / \ | | | ""\ | ""\ ( | | | | | "| <-|-> / / / \ "" / " / ""| " / ", | "" ,"" / | \ v / / \ | " "| "" /
(done with http://figlet.de)

Anyway, thank you for the snipet.-

{ \ ( ' v ' ) / }
( \ _ / ) _ _ _ _ ` ( ) ' _ _ _ _
( = ( ^ Y ^ ) = ( _ _ ^ ^ ^ ^
_ _ _ _ \ _ ( m _ _ _ m ) _ _ _ _ _ _ _ _ _ ) c h i a n o , a l b e r t o
Wherever I lay my KNOPPIX disk, a new FREE LINUX nation could be established

In reply to Re^3: Mirrored text with Imager by chanio
in thread Mirrored text with Imager by zentara

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.