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);
?>
しかし、残念ながら、出力が期待どおりに得られないため、出力画像に表示されているように、背景画像にコンテンツを追加したいと考えています。