我尝试制作一个像插件一样的 PHP GD 横幅,让用户复制和粘贴图像链接并放入他们的网站,到目前为止这对我来说还可以,问题是当我加载图像时,其他页面内容,如文本等不显示在浏览器中
这是我绘制图像的 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>
有人可以提出任何解决方案来克服这个问题吗?