将图像文件插入php的imagecreate

时间:2011-02-25 14:18:48

标签: php image dynamic-image-generation

我正在尝试动态生成将由其他较小图像组成的图像文件。这是我到目前为止的代码

    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位置。

有什么建议吗?我真诚地感谢你能带给我的任何帮助。非常感谢你!

1 个答案:

答案 0 :(得分:1)

Imagecopymerge可能就是你要找的东西