downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

ImagickDraw::setFontStretch> <ImagickDraw::setFontFamily
[edit] Last updated: Fri, 24 May 2013

view this page in

ImagickDraw::setFontSize

(PECL imagick 2.0.0)

ImagickDraw::setFontSizeテキストによる注記を行う際に使用するフォントのポイント数を設定する

説明

bool ImagickDraw::setFontSize ( float $pointsize )
警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

テキストによる注記を行う際に使用するフォントのポイント数を設定します。

パラメータ

pointsize

ポイント数。

返り値

値を返しません。



add a note add a note User Contributed Notes ImagickDraw::setFontSize - [2 notes]
up
0
hmkrox at gmail dot com
3 years ago
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.
up
0
jgsujith at in dot com
3 years ago
<?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
?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites