PHP Doku:: Sets the font pointsize to use when annotating with text - function.imagickdraw-setfontsize.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungImage Processing (ImageMagick)The ImagickDraw classImagickDraw::setFontSize

Ein Service von Reinhard Neidl - Webprogrammierung.

The ImagickDraw class

<<ImagickDraw::setFontFamily

ImagickDraw::setFontStretch>>

ImagickDraw::setFontSize

(PECL imagick 2.0.0)

ImagickDraw::setFontSizeSets the font pointsize to use when annotating with text

Beschreibung

bool ImagickDraw::setFontSize ( float $pointsize )
Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Sets the font pointsize to use when annotating with text.

Parameter-Liste

pointsize

the point size

Rückgabewerte

Es wird kein Wert zurückgegeben.


2 BenutzerBeiträge:
- Beiträge aktualisieren...
hmkrox at gmail dot com
3.08.2009 16:10
The font size taken in parameter is not the size in point (1 point = 1/72 inch) but the font's height in pixel.
Therefore you should do a conversion to have the correct font size if you want to modify a document destined to print.
For example, if your document's resolution is 300ppi, you should add a 25/6 multiplying factor to your fontsize in order to have a correct behaviour of the font.
jgsujith at in dot com
15.07.2009 15:23
<?php
$sourceFile
='in.jpg';
$textWrite='God is Great';
$x=50;
$y=50;   
$fontColor='#000000';
$fontSize=34;
 
$colorPix=new ImagickPixel ($fontColor);
$image=new Imagick ($sourceFile);
$draw=new ImagickDraw();
       
$draw->setFontSize($fontSize);//Sets the font pointsize to use when annotating with text

$draw->setFillColor($colorPix);//Sets the fill color to be used for drawing filled objects
           
$image->annotateImage($draw,$x,$y,0,$textWrite);//Annotates an image with text

$image->writeImage('out.jpg');//Writes an image to the specified filename
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)