0

此时我正在尝试创建一个动态 PHP 图像,我不确定是否可以在以下代码中包含可点击的链接:

<?php
$image = "hotelview_val13.png";
$src = 'pixel.png';
putenv('GDFONTPATH=' . realpath('.')); 
$font = 'font.ttf';  //Ubuntu font
$im = imagecreatefrompng($image);

imagealphablending($im, true);
imagesavealpha($im, true);

imagealphablending($src_to_copy, true);
imagesavealpha($src_to_copy, true);

imagealphablending($pg, true);
imagesavealpha($pg, true);

$wc = ImageColorAllocate ($im, 255, 255, 255);
$red = ImageColorAllocate ($im, 255, 0, 0);
$blk = imagecolorallocate($im, 0, 0, 0);

{
    imagettftext($im, 12, 0, 45, 310, $blk, $font , "<A HREF=\"link.php\"     TARGET=\"_blank\">Link</A>");
    imagettftext($im, 12, 0, 45, 330, $blk, $font , "Veel plezier ;)");
}



header("Content-Type: image/png");
Imagepng($im);
ImageDestroy ($im);
?>

我想要做的是制作一个可点击的链接。我试图只是简单地放入代码中,但这不起作用,因为它将代码显示为纯文本。是否可以?如果是,它是如何工作的?

非常感谢您的时间。

4

1 回答 1

1

您不能在图像中嵌入链接。在浏览器中查看时,使图像区域可点击的唯一方法是使用 HTML map

于 2013-02-24T11:02:05.223 回答