imagick_annotate --
Annotates an image with a text
Description
Warnung |
Diese Funktion ist EXPERIMENTELL. Das bedeutet, dass sich das Verhalten der Funktion, ihr Name, und ALLES andere, das hier dokumentiert ist, in zukünftigen Versions des Pakets OHNE WARNUNG ändern kann. Seien Sie gewarnt und nutzen Sie das Paket auf eigenes Risiko. |
This function can be used to draw a text on an image. See the example.
Beispiel 1. imagick_annotate() example imagick_annotate($handle,array(
"primitive"=>"text 150,150 hello world",
"pointsize"=>60,
"antialias"=>1,
"stroke"=>'green',
"fill"=>'#ff7755',
"font"=>"Arial.ttf",
"rotate"=>90
));
?> |
|