我正在尝试动态生成一个由其他较小图像组成的图像文件。这是我到目前为止的代码
if ( function_exists('imagecreate') ) {
header ("Content-type: image/png");
$im = @imagecreate ($imgWidth, $imgHeight)
or die ("Cannot initialize new GD image stream");
$background_color = imagecolorallocate ($im, 255, 255, 255);
$text_color = imagecolorallocate ($im, 0,0,0);
imagepng ($im);
imagedestroy($im);
}
到目前为止,它工作正常。我只是不知道如何将较小的图像包含到这个新的、更大的、动态生成的图像中。有谁知道如何做到这一点?理想情况下,执行此操作的函数(或任何函数)会要求我提供图像文件,它是第二个图像文件中的 x 和 y 位置。
有什么建议么?我真诚地感谢你能给我带来的任何帮助。非常感谢你!!