我可以每张图片使用imagettftext两次以上吗?

时间:2012-02-04 12:27:01

标签: php gd

我搜索了很多内容并且无法找到答案,PHP GD库中的imagettftext()是否有某种限制?我在相同的图像上调用了三次,但第三次似乎没有出现。如何在同一图像上“绘制”三个imagettftext()?

提前致谢!

这是代码: 我使用此函数生成边框:

function imagettfstroketext(&$image, $size, $angle, $x, $y, &$textcolor, &$strokecolor, $fontfile, $text, $px){
    for($c1 = ($x-abs($px)); $c1 <= ($x+abs($px)); $c1++){
        for($c2 = ($y-abs($px)); $c2 <= ($y+abs($px)); $c2++){
            $bg = imagettftext($image, $size, $angle, $c1, $c2, $strokecolor, $fontfile, $text);
        }
    }
    return imagettftext($image, $size, $angle, $x, $y, $textcolor, $fontfile, $text);
}

然后我从HTML表单中设置变量:

$text = strip_tags(htmlspecialchars_decode(stripslashes($_GET['text'])));
$text = str_replace('&gt;', '>', $text);
$text = str_replace('&lt;', '<', $text);
$text = str_replace('&quot;', '"', $text);
$text = str_replace('and_sign', '&', $text);

$text2 = strip_tags(htmlspecialchars_decode(stripslashes($_GET['text2'])));
$text2 = str_replace('&gt;', '>', $text2);
$text2 = str_replace('&lt;', '<', $text2);
$text2 = str_replace('&quot;', '"', $text2);
$text2 = str_replace('and_sign', '&', $text2);

$text3 = strip_tags(htmlspecialchars_decode(stripslashes($_GET['text3'])));
$text3 = str_replace('&gt;', '>', $text3);
$text3 = str_replace('&lt;', '<', $text3);
$text3 = str_replace('&quot;', '"', $text3);
$text3 = str_replace('and_sign', '&', $text3);

更多变数:

$image = imagecreatefrompng('images/'.$base.'.png');
$size = '12';
$angle = '0';
$font = 'font/' . strip_tags($_GET['font']) . '.ttf';
if (!$_GET['font']) $font = 'font/visitor2.ttf';

然后我使用该函数绘制文本:

imagettfstroketext($image, $size, $angle, 4, 12, $text_colour, $text_outline, $font, $text, 1);
imagettfstroketext($image, $size, $angle, 10, 20, $text_colour, $text_outline, $font, $text2, 1);
imagettfstroketext($image, $size, $angle, 4, 30, $text_colour, $text_outline, $font, $text3, 1);

1 个答案:

答案 0 :(得分:0)

对该功能没有限制,您可以在任何图像上尽可能多地使用它。也许你只是试图用不好的坐标写在图像之外,或者文本的颜色与背景相同,所以你看不到它。

无论如何,我建议你打印一个文件,当函数不起作用时,函数使用的变量是否正常。