我想通过表单向图像添加一些文本..
我对 GD 没有任何经验,但我已经得到它来添加文本,并显示带有标题内容类型的图像......问题是,我只能显示它,而且只能在页面上显示,没有其他内容...
如果我什至可以让它从一个 ajax 调用中返回,那就太棒了,即使我也没有使用 ajax。
代码:
index.php::::::::
elseif($_GET['p'] == "Images"){
?>
<form action="test.php" method="post">
<input type="text" name="name" value="">
<input type="submit" name="submit" value="submit" >
</form>
<?php
if(!isset($_GET['display'])) $_GET['display'] = "false";
if($_GET['display'] == "true"){
echo "<img src='test.php' />";
}
}
test.php:::::
$font = "Images/Pokedex.TTF"; // full path to your font file
$text = $_POST['name'];
$image = imagecreatefrompng("Images/1.png");
$color = imagecolorallocate($image, 0, 0, 0);
imagettftext($image, 12, 0, 20, 235, $color, $font, $text);
// define content-type header
header("Content-type: image/png");
// output image as a png image
imagepng($image);
//header("Location:index.php?p=Images&display=true");
// and free the memory
imagedestroy($image);