0

我有一个示例代码:

$image_1 = "image_1.jpg";

图 1

$image_2 = "image_2.jpg";

图 2

代码php合并两个图像:

function merge($filename_x, $filename_y, $filename_result) {
    // Get dimensions for specified images

    list($width_x, $height_x) = getimagesize($filename_x);
    list($width_y, $height_y) = getimagesize($filename_y);


    // Create new image with desired dimensions
    $image = imagecreatetruecolor($width_x + $width_y, $height_x);

    // Load images and then copy to destination image
    $image_x = imagecreatefromjpeg($filename_x);
    $image_y = imagecreatefromjpeg($filename_y);

    imagecopy($image, $image_x, 0, 0, 0, 0, $width_x, $height_x);
    imagecopy($image, $image_y, $width_x, 0, 0, 0, $width_y, $height_y);

    // Save the resulting image to disk (as JPEG)
    imagejpeg($image, $filename_result);

    // Clean up
    imagedestroy($image);
    imagedestroy($image_x);
    imagedestroy($image_y);
}

$image_1 = 'image_1.jpg';
$image_2 = 'image_2.jpg';
merge($image_1, $image_2, 'merged.jpg');

结果是:

合并

如何使用 image_2 将 image_1 固定在边缘中心

真的

4

1 回答 1

0

尝试将 imagecopy() 的第三个参数(图像位置的 x 值)更改为较大图像宽度的 1/2 - 较小图像宽度的 1/2。

于 2013-08-30T03:52:53.557 回答