dow58115 2014-10-06 23:03
浏览 386
已采纳

有谁知道为什么imagettftext不会打开字体文件

I am trying to use a font that I've uploaded in my website, but I keep getting this error:

"imagettftext(): Could not find/open font".

I have already tried using the putenv tool, but it still doesn't open the file. Is there an option on Bonfire that limits what kind of files that can be used? I am able to use the imagestring function, but I want to have other fonts.

I was able to load the font in an HTML file, so it looks like it has a problem with imagettftext().

    $image = imagecreatefrompng('/home/dev3/public_html/themes/admin/images/countdown.png');
    $font = array(
        'size'=>40,
        'angle'=>0,
        'x-offset'=>10,
        'y-offset'=>70,
        'file'=>'/home/dev3/public_html/fonts/DIGITALDREAM.ttf',
        'color'=>imagecolorallocate($image, 255, 255, 255),
    );

            $image = imagecreatefrompng('/home/dev3/public_html/themes/admin/images/countdown.png');
            // Open the first source image and add the text.
            $text = $interval->format('%a:%H:%I:%S');
            if(preg_match('/^[0-9]\:/', $text)){
                $text = '0'.$text;
            }
            $text,$font['color']);
            putenv('GDFONTPATH=' . realpath('.'));
            imagettftext ($image , $font['size'] , $font['angle'] , $font['x-offset'] , $font['y-offset'] , $font['color'],$font['file'] ,$text);

            ob_start();
            imagegif($image);
            ob_end_clean();

    $gif = new AnimatedGif($frames,$delays,$loops);
    $gif->display();
  • 写回答

1条回答 默认 最新

  • dongwoqin7034 2014-10-08 22:24
    关注

    GD / FreeType font loading code is restricted to the local filesystem. Your code is trying to read the font from an HTTP URL:

    $font = array(...
       'file'=>'https://dev3.successengineapps.com/fonts/DIGITALDREAM.ttf'
    ...);
    

    The font-loading code in GD doesn't know how to make an HTTP request.

    Here is an example of the minimal set of your code required to get some kind of output; that is, I didn't attempt a serious rewrite in any way of your code, but also stripped out anything that was not obviously directly related to the problem:

    <?php
    header('Content-Type: image/gif');
    $image = imagecreatefrompng('https://dev3.successengineapps.com/themes/admin/images/countdown.png');
        $font = array(
            'size'=>40,
            'angle'=>0,
            'x-offset'=>10,
            'y-offset'=>70,
            'file'=>'./DIGITALDREAM.ttf',
            'color'=>imagecolorallocate($image, 255, 255, 255),
        );
    $text = "Hello, world.";
    if (imagettftext ($image , $font['size'] , $font['angle'] , $font['x-offset'] , $font['y-offset'] , $font['color'],$font['file'] ,$text)) {
            imagegif($image);
    } else {
            var_dump($php_errormsg);
    }
    

    The output of this code is visible here:

    GD code

    My recommendation would be to start with this, and see if you can get working output, and then slowly add additional code back in until you either have a working solution, or find what is breaking it.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘