新浪sae 使用imagettftext总是提示 imagettftext() [function.imagettftext]: Could not find/open font in weather.php on line 64

发布于 2022-08-25 11:01:05 字数 711 浏览 37 评论 0

本地测试没有问题,上传到sae上的时候就会这样报错

代码:

    <?php
    $font1='meteocons.ttf';
    imagettftext($img, 90, 0, 40, 147, $textcolor, $font1, $tq_icon);
    ?>

错误为:

    Warning: imagettftext() [function.imagettftext]: Could not find/open font in weather.php on line 64

stackoverflow上有篇解决这个的提问:http://stackoverflow.com/questions/10366679/warning-imagettftext-function-imagettftext-could-not-find-open-font-in-ho 按照他的方法,前面加/没用,又说Linux下要使用绝对路径,sae上怎么使用绝对路径?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烦人精 2022-09-01 11:01:05
<?php
echo dirname(__FILE__);

看看输出。你可以得到绝对路径。

选用字体文件,的确是需要使用绝对路径。

一般都会有一个类似common.inc.php这样的文件,作用就是公共加载文件,功能就是连接数据库、定义网站在服务器的根目录的绝对路径等。

// /common.inc.php
<?php

define('__PATH__',dirname(__FILE__));

```php
// /api/weather.php
require_once '../common.inc.php';

$fontfile = PATH.'/font.ttf';
$gd = imagecreatefromgd();
imagettftext ( $gd , $size , $angle , $x , $y , $color , $fontfile , $text )

?>
```

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文