0

我在 php 中有一张这样的图片

在此处输入图像描述

现在我想在运行时在白色文本字段上写数字。然后我想将其显示为单个图像。我怎么能做到这一点?

我试图搜索并找到不同的结果,但没有一个对我有用。

我试过http://blog.doh.ms/2008/02/12/adding-text-to-images-in-real-time-with-php/

而这个http://php.about.com/od/phpfunctions/g/imagestring_php.htm

它显示类似这样的东西,我不明白。

"‰PNG  IHDR‚2ª‘ËPLTEÿA£vIDAT(‘c`Ø?óþaà1@a“æmcŠ06 ‹cˆ$ngï1ÀPc 6çï†Ä=gŽ¥å²1ó60$n¸
‘cØÀØp.R!‚¡Fhα    sl€v5oøð¡Æ&ê    •@ÓÀI›Å1U•/LIEND®B`‚"

我不确定为什么会这样。我错过了什么吗?

更新

我做了这个

php打开

    $string = "BSThakrar";
    $image = ImageCreateFromJPEG("images/temp.jpg");
    $cor = imagecolorallocate($image, 0, 0, 0);

    imagestring($image,5,126,22,urldecode($string),$cor);

    header('Content-type: image/jpeg');
    imagejpeg($image,NULL,100);    

php关闭。

它给出了这个输出 在此处输入图像描述

4

1 回答 1

0
<?php
$string = "BSThakrar";
$image = imageCreateFromJpeg("image.jpeg");
$cor = imagecolorallocate($image, 0, 0, 0);
imagestring($image,5,126,22,urldecode($string),$cor);
header('Content-type: image/jpeg');
imagejpeg($image,NULL,100);
?>

它必须是 jpg 图像而不是您尝试使用的 png 图像,也可以将 $string 替换为您希望它具有的输入。

如果要使用 png,请更改为:

<?php
$string = "BSThakrar";
$image = imageCreateFromPng("image.png");
$cor = imagecolorallocate($image, 0, 0, 0);
imagestring($image,5,126,22,urldecode($string),$cor);
header('Content-type: image/png');
imagepng($image,NULL);
?>
于 2013-09-25T11:39:01.520 回答