0

我想通过表单向图像添加一些文本..

我对 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);  
4

1 回答 1

1

你可以<img src='test.php' />在任何你的 html 代码中包含 getphp 生成的图像。您可以使用 get param 来通过图像测试,如下所示:

<!-- Any HTML code (my be generated by PHP -->
<img src='test.php?name=My+Text' />

对于 test.php:

//Replace $text = $_POST['name'];
$text = $_GET['name'];
于 2013-05-19T16:43:45.813 回答