字体子集失败:ots 解析错误
使用 php 字体重建库时,您可能会遇到 “failed to decode downloaded font” 错误,并带有 “ots parsing Error: os/2: missing required table” 消息。这通常是因为保存新字体时遇到了问题。
要正确保存字体子集,请使用以下步骤:
include('schrift.php'); // 加载字体文件 $font = Schrift::load('hywxinshu.ttf'); // 子集包含所需的字符 $font->subset('abc hello world 中国'); // 在 Font_Binary_Stream 对象中打开临时文件 $stream = new Font_Binary_Stream(tempnam(sys_get_temp_dir(), 'fnt'), Font_Binary_Stream::modeWrite); // 将字体编码到流中 $font->encode(array('OS/2'), $stream); // 关闭流,保存文件 $stream->close(); // 将临时文件移至最终目的地 rename(tempnam, 'Public/fonts/newfont1133.ttf');
与您最初的代码相比,此处使用 font::load() 方法加载字体,并使用 font_binary_stream 对象正确地打开和保存临时文件。这将确保字体子集正确保存,以后可以在网页中使用。
立即学习“PHP免费学习笔记(深入)”;
此外,请注意,帖子中提到的字体子集项目 (https://github.com/amswindell/php-schrift) 使用的库已被弃用,并且不再用于维护。相反,建议使用 schrift 类库 (https://github.com/justincassidy/php-font-lib) 或 font_lib (https://github.com/php-font-lib/font_lib)。这些库将提供更新的支持和对现代字体格式更好的支持。