这是我的网站。我正在尝试制作自己的测试 URL:
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,请告诉我。