gpt4 book ai didi

php - 使用 imagettftext 时填充矩形而不是文本

转载 作者:行者123 更新时间:2023-12-04 06:04:19 24 4
gpt4 key购买 nike

我在使用 imagettftext() 渲染文本时遇到了一些问题;不知何故,它只是显示填充的矩形。完全没有错误。 http://postimage.org/image/k61c8xi0n/

  • PHP 版本:5.3.8
  • GD 支持:已启用
  • GD 版本:捆绑(兼容 2.0.34)
  • 自由类型支持:启用
  • Freetype联动:与freetype
  • 自由字体版本:2.4.3

  • 这是代码,没什么奇怪的。字体路径有效。
    <?php 
    header("Content-type: image/png");
    $template = imagecreatefrompng("template.png");

    imagealphablending( $template, false );
    imagesavealpha( $template, true );

    $white = imagecolorallocate($template, 255, 255, 255);
    imagettftext($template, 20, 0, 100, 50, $white, 'arial.ttf', 'Some text');

    imagepng($template);
    ?>

    最佳答案

    使用您的代码,如果我将 imagealphablending 设置为 true(或将其注释掉),它就可以正常工作。

    关于php - 使用 imagettftext 时填充矩形而不是文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8547585/

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