PHP imagepsencodefont 图像GD库函数
-
定义和用法
imagepsencodefont - 改变字体中的字符编码矢量 -
版本支持
PHP4 PHP5 PHP7 支持 支持 不支持 -
语法
imagepsencodefont ( resource $font_index , string $encodingfile )
imagepsencodefont() 从文件中加载字符编码矢量并用其替换给定字体的编码矢量。由于 PostScript 字体的默认矢量缺少大多数超过 127 的字符位置,因此如果使用其它非英语的语言的话肯定需要改变它。编码文件的确切格式定义在 T1lib 文档中。T1lib 包含有两个可马上使用的文件,IsoLatin1.enc 和 IsoLatin2.enc。 如果发现自己总是要用本函数,更好的定义编码的做法是在配置文件中将 ps.default_encoding 设定为指向正确的编码文件,这样加载的所有字体就会自动具有正确编码了。注意: 此函数仅在 PHP 编译时指定了 --with-t1lib[=DIR] 时可用。
-
参数
参数 必需的 描述 font_index 是 imagepsloadfont() 所返回的字体资源。 encodingfile 是 这个文件的确切格式在T1libs文档中描述。T1lib附带两个随时可用的文件,IsoLatin1.enc和IsoLatin2.enc。 -
返回值
成功时返回 TRUE, 或者在失败时返回 FALSE。 -
示例
// Load a .pfb font file $font = imagepsloadfont('./px3l.pfb'); // Tell T1lib to use ISO Latin 1 encoding imagepsencode($font, './IsoLatin1.enc'); // Do any operations with the font here // Free the font from memory imagepsfreefont($font);
-