用PHP合并两个图像


76

我正在尝试将两个图像与PHP合并。

例如...我该如何将图像一放置在图像二之上或与基本PHP合并?我已经尝试过诸如加水印的操作,但是它似乎没有用。

图片一

替代文字

图片二

替代文字

...变成它了吗?最后结果:

替代文字


1
只是显示或尝试生成图像
zod 2010年

如果水印有效,但没有提供所需的结果,我的主意就是想将3张图像组合在一起。第一张图片是空白的白色图片,u合并左侧的第一张图片和右侧的第二张图片。我知道编写代码不像发布评论那样容易。只是评论什么凸轮EIN我的脑海

1
您确定需要php吗?您可以轻松地做到这一点
warfish,2015年

如果允许用户下载图像,则需要PHP。
家庭作业

@家庭作业您在下面得到了答案。但是,仅作为参考:您可以通过JavaScript和<canvas>元素组合图像(也可以做很多其他事情)。用户也可以像您所说的那样下载渲染的图像。
StanE

Answers:


121

我从我制作的作品中得到了工作。

<?php
$dest = imagecreatefrompng('vinyl.png');
$src = imagecreatefromjpeg('cover2.jpg');

imagealphablending($dest, false);
imagesavealpha($dest, true);

imagecopymerge($dest, $src, 10, 9, 0, 0, 181, 180, 100); //have to play with these numbers for it to work for you, etc.

header('Content-Type: image/png');
imagepng($dest);

imagedestroy($dest);
imagedestroy($src);
?>

4
适用于具有透明度的图像。
做作业

25

问题是关于合并两个图像,但是在这种指定的情况下,您不应该这样做。您应该将Content Image(即Cover)放入<img />标签中,并将Style Image放入CSS中,为什么?

  1. 正如我所说的,封面属于文档的内容,而黑胶唱片和阴影只是页面样式的一部分。
  2. 这种分离使用起来更加方便。用户可以轻松复制该图像。通过网络蜘蛛索引更容易。
  3. 最后,它更容易维护。

因此,使用非常简单的代码:

<div class="cover">
   <img src="/content/images/covers/movin-mountains.png" alt="Moving mountains by Pneuma" width="100" height="100" />
</div>

.cover {
    padding: 10px;
    padding-right: 100px;

    background: url(/style/images/cover-background.png) no-repeat;
}

3
谢谢你,但是我要PHP。仍然要保存此。
家庭作业,2010年

1
真正。对于服务器而言,这很容易,因为它不必处理所有图像。而且对用户来说也更快,因为它一直都没有乙烯基的图像部分。
尼基·史密斯

2
选择的答案很有趣,因为我们可以混合两个图像并在Facebook上分享。
Fabio Montefuscolo

2
CSS仅在要在网站上使用图像时才有效。无法在CSS上创建要在社交媒体上共享,用户下载等的图像。
宣威

可以帮助我,我需要在合并后保存图像。通过编写html可以做到这一点。
拉胡尔·瓦茨

11

ImageArtist是我创作的纯gd包装器,它使您可以极其轻松地执行复杂的图像操作,因为使用此功能强大的库只需很少的步骤即可完成问题的解决。

这是示例代码。

$img1 = new Image("./cover.jpg");
$img2 = new Image("./box.png");
$img2->merge($img1,9,9);
$img2->save("./merged.png",IMAGETYPE_PNG);

这就是我的结果。

在此处输入图片说明


太棒了!谢谢。
家庭作业

太棒了!您节省了我几个小时!
Atomico

4

您可以尝试使用我的功能来水平或垂直合并图像而不更改图像比率。只需复制粘贴即可。

function merge($filename_x, $filename_y, $filename_result, $mergeType = 0) {

    //$mergeType 0 for horizandal merge 1 for vertical merge

 // Get dimensions for specified images
 list($width_x, $height_x) = getimagesize($filename_x);
 list($width_y, $height_y) = getimagesize($filename_y);


$lowerFileName = strtolower($filename_x); 
if(substr_count($lowerFileName, '.jpg')>0 || substr_count($lowerFileName, '.jpeg')>0){
    $image_x = imagecreatefromjpeg($filename_x);    
}else if(substr_count($lowerFileName, '.png')>0){
    $image_x = imagecreatefrompng($filename_x); 
}else if(substr_count($lowerFileName, '.gif')>0){
    $image_x = imagecreatefromgif($filename_x); 
}


$lowerFileName = strtolower($filename_y); 
if(substr_count($lowerFileName, '.jpg')>0 || substr_count($lowerFileName, '.jpeg')>0){
    $image_y = imagecreatefromjpeg($filename_y);    
}else if(substr_count($lowerFileName, '.png')>0){
    $image_y = imagecreatefrompng($filename_y); 
}else if(substr_count($lowerFileName, '.gif')>0){
    $image_y = imagecreatefromgif($filename_y); 
}


if($mergeType==0){
    //for horizandal merge
     if($height_y<$height_x){
        $new_height = $height_y;

        $new_x_height = $new_height;
        $precentageReduced = ($height_x - $new_height)/($height_x/100);
        $new_x_width = ceil($width_x - (($width_x/100) * $precentageReduced));

         $tmp = imagecreatetruecolor($new_x_width, $new_x_height);
        imagecopyresampled($tmp, $image_x, 0, 0, 0, 0, $new_x_width, $new_x_height, $width_x, $height_x);
        $image_x = $tmp;

        $height_x = $new_x_height;
        $width_x = $new_x_width;

     }else{
        $new_height = $height_x;

        $new_y_height = $new_height;
        $precentageReduced = ($height_y - $new_height)/($height_y/100);
        $new_y_width = ceil($width_y - (($width_y/100) * $precentageReduced));

         $tmp = imagecreatetruecolor($new_y_width, $new_y_height);
        imagecopyresampled($tmp, $image_y, 0, 0, 0, 0, $new_y_width, $new_y_height, $width_y, $height_y);
        $image_y = $tmp;

        $height_y = $new_y_height;
        $width_y = $new_y_width;

     }

     $new_width = $width_x + $width_y;

     $image = imagecreatetruecolor($new_width, $new_height);

    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);

}else{


    //for verical merge
    if($width_y<$width_x){
        $new_width = $width_y;

        $new_x_width = $new_width;
        $precentageReduced = ($width_x - $new_width)/($width_x/100);
        $new_x_height = ceil($height_x - (($height_x/100) * $precentageReduced));

        $tmp = imagecreatetruecolor($new_x_width, $new_x_height);
        imagecopyresampled($tmp, $image_x, 0, 0, 0, 0, $new_x_width, $new_x_height, $width_x, $height_x);
        $image_x = $tmp;

        $width_x = $new_x_width;
        $height_x = $new_x_height;

     }else{
        $new_width = $width_x;

        $new_y_width = $new_width;
        $precentageReduced = ($width_y - $new_width)/($width_y/100);
        $new_y_height = ceil($height_y - (($height_y/100) * $precentageReduced));

         $tmp = imagecreatetruecolor($new_y_width, $new_y_height);
        imagecopyresampled($tmp, $image_y, 0, 0, 0, 0, $new_y_width, $new_y_height, $width_y, $height_y);
        $image_y = $tmp;

        $width_y = $new_y_width;
        $height_y = $new_y_height;

     }

     $new_height = $height_x + $height_y;

     $image = imagecreatetruecolor($new_width, $new_height);

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

}





$lowerFileName = strtolower($filename_result); 
if(substr_count($lowerFileName, '.jpg')>0 || substr_count($lowerFileName, '.jpeg')>0){
    imagejpeg($image, $filename_result);
}else if(substr_count($lowerFileName, '.png')>0){
    imagepng($image, $filename_result);
}else if(substr_count($lowerFileName, '.gif')>0){
    imagegif($image, $filename_result); 
}


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

}


merge('images/h_large.jpg', 'images/v_large.jpg', 'images/merged_har.jpg',0); //merge horizontally
merge('images/h_large.jpg', 'images/v_large.jpg', 'images/merged.jpg',1); //merge vertically

2

使用GD库或ImageMagick。我在“ PHP GD合并图像”上进行了搜索,并获得了几篇有关此操作的文章。过去,我要做的是创建一个大的空白图像,然后使用imagecopymerge()将这些图像粘贴到我的原始空白图像中。在Google上查看文章,您会发现一些可以立即开始使用的源代码。



1

PHP中的GD图像处理库可能是使用PHP中的图像的最佳选择。尝试使用图像复制功能之一(图像复制,图像复制合并...)。它们每个都以不同的方式组合2张图像。有关更多信息,请参见imagecopy上php文档


0

合并两个图像png和jpg / png [图像遮罩]

//URL or Local path
$src_url = '1.png';
$dest_url = '2.jpg';
$src = imagecreatefrompng($src_url);
$dest1 = imagecreatefromjpeg($dest_url);

//if you want to make same size
list($width, $height) = getimagesize($dest_url);
list($newWidth, $newHeight) = getimagesize($src_url);
$dest = imagecreatetruecolor($newWidth, $newHeight);

imagecopyresampled($dest, $dest1, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height);

list($src_w, $src_h) = getimagesize($src_url);

//merger with same size
$this->imagecopymerge_alpha($dest, $src, 0, 0, 0, 0, $src_w, $src_h, 100);

//show output on browser
header('Content-Type: image/png');
imagejpeg($dest);

imagecopymerge_alpha

function imagecopymerge_alpha($dst_im, $src_im, $dst_x, $dst_y, $src_x, $src_y, $src_w, $src_h, $pct)
    {
        $cut = imagecreatetruecolor($src_w, $src_h);
        imagecopy($cut, $dst_im, 0, 0, $dst_x, $dst_y, $src_w, $src_h);
        imagecopy($cut, $src_im, 0, 0, $src_x, $src_y, $src_w, $src_h);
        imagecopymerge($dst_im, $cut, $dst_x, $dst_y, 0, 0, $src_w, $src_h, $pct);
    }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.