Thread Vertikale Spaltenbeschriftung für table (HTML)
(72 answers)
Opened by bianca at 2010-08-01 20:39
Codeschnippsel als gedrehte Grafik:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 use GD; my $string = "Das ist ein Text!"; my $font = GD::Font->Small; my $height = $font->height; my $width = $font->width; my $im = GD::Image->new($height,5 + $width * length $string); my $white = $im->colorAllocate(255,255,255); my $color = $im->colorAllocate(0,0,0); # ist Schwarz $im->transparent($white); $im->stringUp($font,0,$width * length $string,$string,$color); //EDIT: Dann je nach Lust und Laune und Verwendung die Ausgabe des $im-Objekts als Grafik: Also meinetwegen nach STDOUT Code (perl): (dl
)
print $im->png; Das alles in eine Funktion umzuwandeln ist ja für bianca einfach. ;) Last edited: 2010-08-02 09:56:34 +0200 (CEST) |