📜  PHP | GmagickDraw setfontsize()函数

📅  最后修改于: 2022-05-13 01:56:51.138000             🧑  作者: Mango

PHP | GmagickDraw setfontsize()函数

Gmagick::setfontsize()函数是PHP中的一个内置函数,用于设置在文本注释时使用的字体大小。

句法:

public GmagickDraw::setfontsize( $pointsize ) 


参数:此函数接受用于存储字体大小的单个参数$pointsize

返回值:此函数在成功时返回 GmagickDraw 对象。

下面的程序说明了PHP中的Gmagick::setfontsize()函数:

方案一:

setfillcolor('red');
  
// Set the width and height of image 
$draw->setStrokeWidth(7); 
  
//Set the fontsize
$draw->setfontsize(72); 
     
// Function to draw circle  
$draw->circle(250, 250, 100, 150); 
   
$gmagick = new Gmagick(); 
$gmagick->newImage(500, 500, 'White'); 
$gmagick->setImageFormat("png"); 
$gmagick->drawImage($draw); 
  
// Using getfontsize() function
print_r($draw->getfontsize());
?> 

输出:

72

方案二:

setFillColor('Green'); 
     
// Set the width and height of image 
$draw->setStrokeWidth(1); 
   
// Function to draw line
for($x = 0; $x < 40; $x++) {
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
    $draw->line(rand(0, 100), rand(0, 60), rand(0, 500), rand(0, 500));
}
  
$gmagick = new Gmagick(); 
$gmagick->newImage(500, 500, 'White'); 
$gmagick->setImageFormat("png"); 
   
// Set the color
$draw->setFillColor('Black'); 
   
//set Font Size
$draw->setFontSize(25); 
   
// Use of drawimage function
$gmagick->drawImage($draw); 
  
$gmagick->annotateImage($draw, 5, 120, 0, 
        'GeeksforGeeks: A computer science portal'); 
  
// Display the output image 
header("Content-Type: image/png"); 
echo $gmagick->getImageBlob(); 
?> 

输出:

参考: http: PHP。 PHP