Imagick::setFont()函数是PHP中的内置函数,用于设置字体。
用法:
bool Imagick::setFont( string $font )
参数:该函数接受单个参数$font,该参数保存字体文件的名称。
返回值:成功时此函数返回TRUE。
扩展程序:为此函数需要安装GD扩展程序。
以下示例程序旨在说明PHP中的Imagick::getFont()函数:
程序1:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Use setFont() function to set the
// font using .ttf font file. The .ttf
// file is placed in same folder
$imagick->setFont('Windsong.ttf');
// Write a caption in image format
$imagick->newPseudoImage(800, 350, "caption:GeekforGeeks");
// Show the output
$imagick->setformat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
输出:
程序2:
<?php
// Create a new imagick object
$imagick = new Imagick();
// Set the font - make sure .ttf font file
// is placed in same folder
$imagick->setFont('FFF_Tusj.ttf');
// Write the caption in a image
$imagick->newPseudoImage(800, 350, "caption:GeekforGeeks");
// Show the output
$imagick->setformat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
输出:
参考: https://www.php.net/manual/en/imagick.setfont.php
相关用法
- PHP GmagickDraw setfont()用法及代码示例
- PHP ImagickDraw setFont()用法及代码示例
- PHP Imagick despeckleImage()用法及代码示例
- PHP Imagick convolveImage()用法及代码示例
- PHP Imagick readImage()用法及代码示例
- PHP Imagick randomThresholdImage()用法及代码示例
- PHP Imagick distortImage()用法及代码示例
- PHP Imagick readImageFile()用法及代码示例
- PHP Imagick separateImageChannel()用法及代码示例
- PHP Imagick sepiaToneImage()用法及代码示例
- PHP Imagick remapImage()用法及代码示例
- PHP Imagick readImages()用法及代码示例
- PHP Imagick gaussianBlurImage()用法及代码示例
- PHP Imagick encipherImage()用法及代码示例
- PHP Imagick equalizeImage()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick setFont() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。