我使用此脚本使用 php-gd 库将 html 代码转换为图像:
<?php
//put your html code here
$html_code = '
<html>
<body>
Image Out Put sadadasdasdasdasdasd
</body>
</html>
';
$img = imagecreate("300", "600");
imagecolorallocate($img,0,0,0);
$c2 = imagecolorallocate($img,70,70,70);
imageline($img,0,0,300,600,$c2);
imageline($img,300,0,0,600,$c2);
$white = imagecolorallocate($img, 255, 255, 255);
imagettftext($img, 9, 0, 1, 1, $white, "arial.ttf", $html_code);
header('Content-type: image/jpeg');
imagejpeg($img);
?>
网址:
http://almogas.com/temp/phpimage.php?id=3
我得到了很多未知的字符。我该如何解决这种行为?
///////////////////////////////////////
编辑
现在它在删除空格后工作
但是有办法添加背景图片吗?谢谢你