プラグインのようなPHPGDバナーを作成して、ユーザーに画像リンクをコピーして貼り付け、ウェブサイトに配置しようとしましたが、これまでのところ問題なく機能しました。画像を読み込むと、テキストなどの他のページコンテンツが問題になります。 、などがブラウザに表示されない
これが画像を描くための私のphpコードです
<?php
header("Content-type: image/png");
$string = $_GET['text']. ' Click Here';
$im = imagecreatefrompng("../../images/banner.png");
$orange = imagecolorallocate($im, 0, 0, 0);
$px = (imagesx($im) - 1.5 * strlen($string)) / 2;
$font = 'verdana.ttf';
imagestring($im,50, $px, 45, $string, $orange);
imagepng($im);
imagedestroy($im);
?>
ヒント:ヘッダーを機能させるために、このコードをページの上部に配置します
現在、他のhtmlコードは次のとおりです。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>add plugin</title>
</head>
<body>
<h3>Select One or More Plugin to connect your website for your reservation</h3>
<h4>Just A Button</h4>
<br />
<p>Instructions</p>
<p>Copy this code and paste into your website</p>
</body>
</html>
誰かがこの問題を克服するための解決策を提案できますか?