You can do that with Gtk2 (Gnome2::Canvas and Goo::Canvas) with it's pango markup; but with Tk you would have to string together a few createText, use the bbox on the text to properly position everthing. You must also consider the anchor. Here is an example, but I hard coded 9 into the position, you probably can figure out a way to compute it( maybe not :-) )
#!/usr/bin/perl
use Tk;
use strict;
my $mw=tkinit;
$mw->fontCreate('big',
-family=>'arial',
-weight=>'bold',
-size=>int(-24*24/14));
my $c = $mw->Canvas(-bg => 'white')->pack;
my $x = 0; my $y = 50;
my $t1 = $c->createText($x+50,$y,
-anchor=>'w',
-fill => 'red',
-font => 'big',
-text => '4',
);
my ($bx,$by,$bx1,$by1)= $c->bbox($t1);
print "$bx $by $bx1 $by1\n";
my $t2 = $c->createText ($bx1,$y+9, #computing 9 is difficult
-anchor=>'w',
# -font => 'big',
-fill => 'black',
-text=> '2');
($bx,$by,$bx1,$by1)= $c->bbox($t2);
print "$bx $by $bx1 $by1\n";
MainLoop;
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.