Thread Gdlib zeigt nur rotes Bild
(2 answers)
Opened by Gast at 2009-01-28 17:21
Hallo,
ich habe ein kleines Perl Problem. Ich möchte Schrift auf einem .jpeg Bild einfügen. Hier das Snippet: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 $bild = new GD::Image(250, 60); $rot=$bild->colorAllocate(255, 0, 0); $weiss=$bild->colorAllocate(255, 255, 255); $im = newFromJpeg GD::Image("gdlib.jpg"); $bild->setTile($im); $bild->string(gdLargeFont,120,25,"beispiel", $weiss); binmode STDOUT; print ($bild->png); Leider wird aber nur ein roter Hintergrund und nicht das Bild gdlib.jpg angezeigt. Die Gdlib ist installiert! Gruss Max |