gpt4 book ai didi

php - 使用带有 helveticab.php 字体的 FPDF 错误

转载 作者:行者123 更新时间:2023-12-02 02:39:50 37 4
gpt4 key购买 nike

我正在尝试在 Windows 上使用 FPDF 并使用 XAMPP 服务器。

我一直遇到这个错误:

警告:include(helveticab.php) [function.include]: 无法打开流:第 541 行的 C:\xampp\php\PEAR\fpdf.php 中没有此类文件或目录

警告:include() [function.include]:无法在 C:\xampp\php\PEAR\fpdf 中打开“helveticab.php”以包含 (include_path='.;C:\xampp\php\PEAR') .php 第 541 行FPDF 错误:无法包含字体规范文件

有人知道如何解决这个问题吗?

另外,我已经检查并安装了 helveticab.php,这是我在类似问题中给出的答案。

谢谢

最佳答案

不知道他们为什么这样做,但如果字体是“Arial”,他们会将字体更改为 Helvetica。其中一种样式是“c”。他们将样式附加到字体,因此它会搜索并添加字体和样式。例如,helvetica 粗体是 helveticab,或者 helvetica 斜体粗体是 helveticabi,但 helveticac 不存在。为了避免这个问题,我在 fpdf.php 的第 498 行左右添加了以下几行。如果样式是“c”,我们将样式设置为“”:代码已经有了

// Test if one of the core fonts
if($family=='arial')
$family = 'helvetica';

我添加的代码:

if(stripos($style, "c")!==false)
$style='';

关于php - 使用带有 helveticab.php 字体的 FPDF 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9929245/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com