有些人可以帮我解决这个问题

时间:2012-04-25 21:03:32

标签: php javascript gd

这是我的网站。我正试图制作自己的测试网址:

http://boats.instantonlinesuccess.co.uk/boat-names.html

如果你看一下,你可以看到我想要做的事情。我正在尝试将JavaScript链接到我的PHP,因此写作会出现效果/效果颜色/颜色。它都是通过我正在尝试编写的PHP脚本生成的。

这是我的PHP:

<?php header("Content-type: image/png");
    $string = $_GET['text'];
    $currentFont =$_GET['font'];
    $currentTextColour = $_GET['colour'];
    $currentEffect = $_GET['effect'];
    $currentEffectColour = $_GET['effectcolour'];
    $im = imagecreatefrompng("images/test.png");
    $px = (imagesx($im) - 7.5 * strlen($string)) / 2;
    //if you exactly know the RGB color indexes//
    $rgb = imagecolorexact($im, 0, 0, 0);
    //or keep the rgb color by position so at top 0 left 0 
    $rgb = imagecolorat($im, 0, 0);
    imagecolortransparent($im, $rgb);
    imagestring($im, 64, $px, 16, $string, $currentTextColour);
    imagepng($im); imagedestroy($im); 
?>

如果您需要JavaScript,请告诉我。

1 个答案:

答案 0 :(得分:0)

您可以尝试将第一行更改为此以调试问题:

header('Content-Type: text/plain');