<?php /** * 图片合并 **/ $pic_list = array( './image/image-1.jpg', './image/image-2.jpg', './image/image-3.jpg', './image/image-4.jpg', './image/image-5.jpg', './image/image-6.jpg', './image/image-7.jpg', './image/image-8.jpg', './image/image-9.jpg', './image/image-10.jpg', ); $info = getimagesize($pic_list[0]); $pic_list = array_slice($pic_list, 0, 10); $bg_w = $info[0] * 10; // 背景图片宽度 $bg_h = $info[1]; // 背景图片高度 $start_x = 0; // 开始位置X $start_y = 0; // 开始位置Y $pic_w = intval($bg_w/10); // 宽度 $pic_h = intval($bg_h); // 高度 $line_x = 5; $background = imagecreatetruecolor($bg_w,$pic_h); // 背景图片 $color = imagecolorallocate($background, 202, 201, 201); // 为真彩色画布创建白色背景,再设置为透明 imagefill($background, 0, 0, $color); imageColorTransparent($background, $color); $pic_count = count($pic_list); $lineArr = array(); // 需要换行的位置 $space_x = 0; $space_y = 0; $line_x = 0; foreach( $pic_list as $k=>$pic_path ) { $kk = $k + 1; if ( in_array($kk, $lineArr) ) { $start_x = $line_x; $start_y = $start_y + $pic_h + $space_y; } $pathInfo = pathinfo($pic_path); switch( strtolower($pathInfo['extension']) ) { case 'jpg': case 'jpeg': $imagecreatefromjpeg = 'imagecreatefromjpeg'; break; case 'png': $imagecreatefromjpeg = 'imagecreatefrompng'; break; case 'gif': default: $imagecreatefromjpeg = 'imagecreatefromstring'; $pic_path = file_get_contents($pic_path); break; } $resource = $imagecreatefromjpeg($pic_path); // $start_x,$start_y copy图片在背景中的位置 // 0,0 被copy图片的位置 // $pic_w,$pic_h copy后的高度和宽度 imagecopyresized($background,$resource,$start_x,$start_y,0,0,$pic_w,$pic_h,imagesx($resource),imagesy($resource)); // 最后两个参数为原始图片宽度和高度,倒数两个参数为copy时的图片宽度和高度 $start_x = $start_x + $pic_w + $space_x; } header("Content-type: image/jpg"); imagejpeg($background); imagegif($background, "./hero_gam.png"); ?>
来源:oschina
链接:https://my.oschina.net/u/3853452/blog/4295059