今天有个客户项目想把自己的logo加在用户上传的图片上,需求提给我了,我就用php写了个图片合并的函数,废话不多说了上代码。 ? php function mergerImg ( $imgs ) { list ( $max_width , $max_height ) = getimagesize ( $imgs [ dst ]); $dests = imagecre
说一下步骤:
总共分 3 步:
1. 压缩logo 成固定大小的方形图片
2. 将logo 转成圆形logo
3. 将logo与背景图合并
废话不多说,直接上代码:
-
<php
-
-
-
-
-
-
-
class ImageController extends CI_Controller{
-
-
public function __construct()
-
{
-
parent::__construct();
-
date_default_timezone_set('Asia/Shanghai');
-
error_reporting( E_ALL&~E_NOTICE&~E_WARNING);
-
$this->load->library('curl');
-
}
-
-
-
-
-
-
-
-
public function index(){
-
-
$headimgurl = 'a.jpg';
-
-
$bgurl = './aa.png';
-
$imgs['dst'] = $bgurl;
-
-
$imggzip = $this->resize_img($headimgurl);
-
-
$imgs['src'] = $this->test($imggzip);
-
-
$dest = $this->mergerImg($imgs);
-
}
-
-
public function resize_img($url,$path='./'){
-
$imgname = $path.uniqid().'.jpg';
-
$file = $url;
-
list($width, $height) = getimagesize($file);
-
$percent = (110/$width);
-
-
$newwidth = $width * $percent;
-
$newheight = $height * $percent;
-
$src_im = imagecreatefromjpeg($file);
-
$dst_im = imagecreatetruecolor($newwidth, $newheight);
-
imagecopyresized($dst_im, $src_im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
-
imagejpeg($dst_im, $imgname);
-
imagedestroy($dst_im);
-
imagedestroy($src_im);
-
return $imgname;
-
}
-
-
-
public function test($url,$path='./'){
-
$w = 110; $h=110;
-
$original_path= $url;
-
$dest_path = $path.uniqid().'.png';
-
$src = imagecreatefromstring(file_get_contents($original_path));
-
$newpic = imagecreatetruecolor($w,$h);
-
imagealphablending($newpic,false);
-
$transparent = imagecolorallocatealpha($newpic, 0, 0, 0, 127);
-
$r=$w/2;
-
for($x=0;$x<$w;$x++)
-
for($y=0;$y<$h;$y++){
-
$c = imagecolorat($src,$x,$y);
-
$_x = $x - $w/2;
-
$_y = $y - $h/2;
-
if((($_x*$_x) + ($_y*$_y)) < ($r*$r)){
-
imagesetpixel($newpic,$x,$y,$c);
-
}else{
-
imagesetpixel($newpic,$x,$y,$transparent);
-
}
-
}
-
imagesavealpha($newpic, true);
-
-
imagepng($newpic, $dest_path);
-
imagedestroy($newpic);
-
imagedestroy($src);
-
unlink($url);
-
return $dest_path;
-
}
-
-
-
public function mergerImg($imgs,$path='./') {
-
-
$imgname = $path.rand(1000,9999).uniqid().'.jpg';
-
list($max_width, $max_height) = getimagesize($imgs['dst']);
-
$dests = imagecreatetruecolor($max_width, $max_height);
-
$dst_im = imagecreatefrompng($imgs['dst']);
-
imagecopy($dests,$dst_im,0,0,0,0,$max_width,$max_height);
-
imagedestroy($dst_im);
-
-
$src_im = imagecreatefrompng($imgs['src']);
-
$src_info = getimagesize($imgs['src']);
-
imagecopy($dests,$src_im,270,202,0,0,$src_info[0],$src_info[1]);
-
imagedestroy($src_im);
-
-
-
-
imagejpeg($dests,$imgname);
-
-
unlink($imgs['src']);
-
return $imgname;
-
}
-
-
-
}
结果展示:
