1
基本上所有我想要做的是包括在簽名的背景圖像,儘管每次我嘗試一些時間,我得到一個錯誤說:PHP簽名圖片生成
資源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);
?>