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

WBOY
풀어 주다: 2016-06-06 20:50:20
원래의
1316명이 탐색했습니다.

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

代码:

<code class="lang-php">    <?php $font1='meteocons.ttf';
    imagettftext($img, 90, 0, 40, 147, $textcolor, $font1, $tq_icon);
    ?>
</code>
로그인 후 복사
로그인 후 복사

错误为:

<code class="lang-html">    Warning: imagettftext() [function.imagettftext]: Could not find/open font in weather.php on line 64
</code>
로그인 후 복사
로그인 후 복사

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

回复内容:

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

代码:

<code class="lang-php">    <?php $font1='meteocons.ttf';
    imagettftext($img, 90, 0, 40, 147, $textcolor, $font1, $tq_icon);
    ?>
</code>
로그인 후 복사
로그인 후 복사

错误为:

<code class="lang-html">    Warning: imagettftext() [function.imagettftext]: Could not find/open font in weather.php on line 64
</code>
로그인 후 복사
로그인 후 복사

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

<code class="lang-php"><?php echo dirname(__FILE__);
</code></code>
로그인 후 복사

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

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

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

<code class="lang-php">// /common.inc.php
<?php define('__PATH__',dirname(__FILE__));
</code></code>
로그인 후 복사

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

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

?> ```

관련 라벨:
php
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿