高效Web开发的10个jQuery代码片段
411
2024-02-24
(PHP 4, PHP 5)
imagepsloadfont — 从文件中加载一个 PostScript Type 1 字体
$filename
)
从文件 filename
中加载一个 PostScript Type 1 字体。
filename
Postscript 字体文件的路径。
如果一切正常,将返回一个合法的字体索引以备使用。否则返回
FALSE
并显示一条信息说明哪里错了,但不能直接读取此信息,因为输出格式是图像。
Example #1 imagepsloadfont() 例子
<?php
// Create a new image instance
$im = imagecreatetruecolor(350, 45);
// Allocate colors and fill the background
$black = imagecolorallocate($im, 0, 0, 0);
$white = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 0, 0, 349, 44, $white);
// Load a font, write to the image and free the font from memory
$font = imagepsloadfont("bchbi.pfb");
imagepstext($im, "Testing... It worked!", $font, 32, $white, $black, 32, 32);
imagepsfreefont($font);
// Output the image
header('Content-type: image/png');
imagepng($im);
imagedestroy($im);
?>
Note: 此函数仅在 PHP 编译时指定了 --with-t1lib[=DIR] 时可用。
imagepsfreefont() - 释放一个 PostScript Type 1 字体所占用的内存
#免责声明#
本站[绿夏技术导航]提供的一切软件、教程和内容信息仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络收集整理,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑或手机中彻底删除上述内容。如果您喜欢该程序或内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件[admin@lxwl520.com]与我们联系进行删除处理。敬请谅解!