📜  PHP | imagickdraw setFontWeight()函数

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

PHP | imagickdraw setFontWeight()函数

ImagickDraw::setFontWeight()函数是PHP中的一个内置函数,用于设置字体粗细。

句法:

bool ImagickDraw::setFontWeight( $font_weight )

参数:此函数接受单个参数$font_weight用于将字体粗细的值保存为整数类型。

返回值:此函数在成功时返回 True。

下面的程序说明了PHP中的ImagickDraw::setFontWeight()函数

方案一:

setFillColor('red');
  
// Set the Font Weight
$draw->setFontWeight(200);
  
// Set the font size
$draw->setFontSize(40);
  
// Set the font family
$draw->setFontFamily('Ubuntu-Mono');
  
// Set the text to be added
$draw->annotation(30, 170, "GeeksForGeeks");
  
// Set the image filled color
$draw->setFillColor('green');
  
// Set the Font Stretch
$draw->setFontStretch(3);
  
// Set the font size
$draw->setFontSize(30);
  
// Set the font family
$draw->setFontFamily('Open-Sans-Light-Italic');
  
// Set the text to be added
$draw->annotation(30, 250, "Font-Weight : 200");
  
// Create new imagick object    
$imagick = new Imagick();
  
// Set the image dimension 
$imagick->newImage(350, 300, 'white');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image 
$imagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $imagick->getImageBlob();
?>

输出:
设置字体粗细

方案二:

setFillColor('Green');
  
// Set the font size
$draw->setFontSize(30);
  
// Set the Font Weight
$draw->setFontWeight(400);
  
// Set the font family
$draw->setFontFamily('Ani');
  
// Set the text to be added
$draw->annotation(30, 40, "GeeksForGeeks");
  
// Create new Imagick object    
$imagick = new Imagick();
  
// Set the image dimension
$imagick->newImage(250, 70, 'white');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $imagick->getImageBlob();
?>

输出:
设置字体粗细

参考: http: PHP。 PHP