基本上我所要做的就是在签名的背景上包含一张图片,虽然每次我尝试的时候都会收到错误说:
资源ID 4
我真的很感谢我收到的任何帮助..
<?php
header("Content-type: image/png");
$image = imagecreatefrompng("../imgs/bisig1.png");
$other = imagecreatefrompng("../imgs/avatar.png");
//imagecolorallocate($image, R, G, B) in HEX values
$font_black = imagecolorallocate($image, 2, 1, 8);
$font_blue = imagecolorallocate($image, 25, 0, 255);
$List = "name.txt";
$string = "Account Name";
$string2 = "<img src='$other'>";
//($image, fontsize, rightindent, downindent, data, txtcolour)
imagestring($image, 3, 12, 3, "T17", $font_blue);
imagestring($image, 1, 86, 6, "SOTW", $font_black);
imagestring($image, 1, 110, 6, $string, $font_black);
imagestring($image, 4, 110, 50, $other, $font_blue);
imagepng($image);
imagedestroy($image);
imagepng($other);
imagedestroy($other);
?>
答案 0 :(得分:1)
GD不是HTML($string2 = "<img src='$other'>";
),它不起作用
顺便说一句,你可能没有得到任何“资源ID 4”错误,因为你的mime类型是png。