这是否可以在 php 中创建具有各种文本字体、样式、格式和对齐方式的背景图像的 gif 图像?
例如我有一个背景图片
我想在背景图像上插入的图像是
输出的 gif 图像应该看起来像
我为此尝试了代码
<?php
// Create a new image instance
$im = imagecreatetruecolor(300, 250);
$img = imagecreatefrompng('back.png');
// Make the background white
imagefilledrectangle($im, 0, 0, 300, 250, 0xEFEFEF);
// Draw a text string on the image
imagestring($im, 20,20, 40, 'Heading1', 0x000000);
imagecopymerge($img, $im, 0, 0, 0, 0, 300, 250, 70);
// Output the image to browser
header('Content-Type: image/gif');
imagegif($img,'test.gif');
imagedestroy($im);
?>
但不幸的是,它没有提供所需的输出,我想向背景图像添加更多内容,如输出图像中所示。