作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案
使用默认的 php 函数(imagecopymerge)(GD 库)):
<?php
list($new_width, $new_height, $new_type, $new_attr) = getimagesize("newimage.png");
switch(image_type_to_mime_type($new_type)){
case IMAGETYPE_GIF:
$new = imagecreatefrompng('newimage.png');
break;
case IMAGETYPE_JPEG:
$new = imagecreatefromjpeg('newimage.png');
break;
case IMAGETYPE_PNG:
$new = imagecreatefromgif('newimage.png');
break;
}
$master = imagecreatefrompng('master.png');
imagealphablending($master, false);
imagesavealpha($demasterst, true);
imagecopymerge($master, $new, $box_x, $box_y, 0, 0, $box_w, $box_h, 100);
// imagecopymerge ( resource $dst_im , resource $src_im , int $dst_x , int $dst_y , int $src_x , int $src_y , int $src_w , int $src_h , int $pct )
//save image
imagepng($master, "file.png");
imagedestroy($master);
imagedestroy($new);
对于jpeg格式使用blow函数:
如果您不想存储它而只想将它发送给用户:
...
...
header('Content-Type: image/jpeg');
// Output the image
imagejpeg($master);
// Free up memory
imagedestroy($master);
imagedestroy($new);
关于javascript - 如何在 Laravel 中合并两个图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52676665/
我是一名优秀的程序员,十分优秀!