Thread Image::Magick - Neues Bild
(3 answers)
Opened by Kean at 2011-06-10 16:07
Nein schreibt kein Bild. (auch nicht mit use Image::Magick)
Aber ich hab mittlerweile eine Lösung gefunden: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 use strict; use warnings; use Image::Magick; my $image = Image::Magick->new ( size=>'200x200' ); $image->ReadImage('xc:white'); my $text = 'Blahh!'; # TrueType font im Verzeichnis des Programms $image->Annotate(font=>'arial.ttf', pointsize=>10, fill=>'black', text=>$text); $image->Write('test.png'); Trotzdem Danke :-) |