您的位置:首页 > 技术源码 > 后台技术
php图片处理类 缩放有补白效果
分类:PHP  编辑:admin  日期:2016-04-14  浏览:86
 

 

<?php
/**
* Author : smallchicken
* Time : 2009年6月8日16:46:05
* Last Time: 2010年5月5日 10:24:30
* mode 1 : 强制裁剪,生成图片严格按照需要,不足放大,超过裁剪,图片始终铺满
* mode 2 : 和1类似,但不足的时候 不放大 会产生补白,可以用png消除。
* mode 3 : 只缩放,不裁剪,保留全部图片信息,会产生补白,
* mode 4 : 只缩放,不裁剪,保留全部图片信息,此时的参数只是限制了生成的图片的最大宽高,不产生补白
* mode 5 : 生成的图比例严格按照需要的比例,宽和高不超过给定的参数。
* 默认补白为白色,如果要使补白成透明像素,请使用SaveAlpha()方法代替SaveImage()方法
*
* 调用方法:
*
* $ic=new ImageCrop('old.jpg','afterCrop.jpg');
* $ic-&gt;Crop(120,80,2);
* $ic-&gt;SaveImage();
* //$ic-&gt;SaveAlpha();将补白变成透明像素保存
* $ic-&gt;destory();
*
*
*/
function make_thumb($src,$dst,$width,$height,$mode)
{
$ic=new ImageCrop($src, $dst);
$ic-&gt;Crop($width , $height , $mode);
$ic-&gt;SaveImage();
$ic-&gt;destory();
}

class ImageCrop {

var $sImage;
var $dImage;
var $src_file;
var $dst_file;
var $src_width;
var $src_height;
var $src_ext;
var $src_type;

function ImageCrop($src_file,$dst_file='') {
$this-&gt;src_file=$src_file;
$this-&gt;dst_file=$dst_file;
if(!$dst_file) $this-&gt;dst_file = $this-&gt;src_file ;
}

function SetSrcFile($src_file) {
$this-&gt;src_file=$src_file;
}

function SetDstFile($dst_file) {
$this-&gt;dst_file=$dst_file;
}

function LoadImage() {
list($this-&gt;src_width, $this-&gt;src_height, $this-&gt;src_type) = getimagesize($this-&gt;src_file);
if(!$this-&gt;src_width || !$this-&gt;src_height || !$this-&gt;src_type){
return false;
}
switch($this-&gt;src_type) {
case IMAGETYPE_JPEG :
$this-&gt;sImage=@imagecreatefromjpeg($this-&gt;src_file);
$this-&gt;ext='jpg';
break;
case IMAGETYPE_PNG :
$this-&gt;sImage=@imagecreatefrompng($this-&gt;src_file);
$this-&gt;ext='png';
break;
case IMAGETYPE_GIF :
$this-&gt;sImage=@imagecreatefromgif($this-&gt;src_file);
$this-&gt;ext='gif';
break;
default:
break;
}
return $this-&gt;sImage &amp;&amp; is_resource($this-&gt;sImage) ? true : false ;
}

function SaveImage($fileName='') {
$this-&gt;dst_file=$fileName ? $fileName : $this-&gt;dst_file;
if($this-&gt;dImage &amp;&amp; is_resource($this-&gt;dImage)){
switch($this-&gt;src_type) {
case IMAGETYPE_JPEG :
@imagejpeg($this-&gt;dImage,$this-&gt;dst_file,100);
break;
case IMAGETYPE_PNG :
@imagepng($this-&gt;dImage,$this-&gt;dst_file);
break;
case IMAGETYPE_GIF :
@imagegif($this-&gt;dImage,$this-&gt;dst_file);
break;
default:
break;
}
}
}

function OutImage() {
if($this-&gt;dImage &amp;&amp; is_resource($this-&gt;dImage)){
switch($this-&gt;src_type) {
case IMAGETYPE_JPEG :
header('Content-type: image/jpeg');
@imagejpeg($this-&gt;dImage);
break;
case IMAGETYPE_PNG :
header('Content-type: image/png');
@imagepng($this-&gt;dImage);
break;
case IMAGETYPE_GIF :
header('Content-type: image/gif');
@imagegif($this-&gt;dImage);
break;
default:
break;
}
}
}

function SaveAlpha($fileName='') {
$this-&gt;dst_file=$fileName ? $fileName . '.png' : $this-&gt;dst_file .'.png';
if($this-&gt;dImage &amp;&amp; is_resource($this-&gt;dImage)){
@imagesavealpha($this-&gt;dImage, true);
@imagepng($this-&gt;dImage,$this-&gt;dst_file);
}
}

function OutAlpha() {
if($this-&gt;dImage &amp;&amp; is_resource($this-&gt;dImage)){
@imagesavealpha($this-&gt;dImage, true);
header('Content-type: image/png');
@imagepng($this-&gt;dImage);
}
}

function destory() {
if($this-&gt;sImage &amp;&amp; is_resource($this-&gt;sImage)) @imagedestroy($this-&gt;sImage);
if($this-&gt;dImage &amp;&amp; is_resource($this-&gt;dImage)) @imagedestroy($this-&gt;dImage);
}

/**
* 创建Image资源
*/
function &amp;createImage($width,$height){
$im = @imagecreatetruecolor($width,$height);
if(!$im || !is_resource($im)) return false;
$bg = @imagecolorallocatealpha($im,255,255,255,127);
@imagefill($im, 0, 0, $bg);
@imagecolortransparent($im,$bg);
return $im;
}

function Crop($dst_width,$dst_height,$mode=1,$dst_file='') {
// 判断是否需要裁减:
if($dst_width&lt;1 || $dst_height &lt; 1) return false;
list($this-&gt;src_width, $this-&gt;src_height, $this-&gt;src_type) = getimagesize($this-&gt;src_file);
if($this-&gt;src_width==$dst_width &amp;&amp; $this-&gt;src_height==$dst_height){
if($this-&gt;src_file==$this-&gt;dst_file) {
return true;
}else{ // 复制一份文件:
return @copy($this-&gt;src_file, $this-&gt;dst_file) ;
}
}
$this-&gt;LoadImage();
if($dst_file) $this-&gt;dst_file=$dst_file;

$ratio_w=1.0 * $dst_width / $this-&gt;src_width;
$ratio_h=1.0 * $dst_height / $this-&gt;src_height;
$ratio=1.0;
switch($mode) {
case 1: // always crop
$this-&gt;dImage = $this-&gt;createImage($dst_width,$dst_height) ;
if(!$this-&gt;dImage) { return false ;} // failed
if( ($ratio_w &lt; 1 &amp;&amp; $ratio_h &lt; 1) || ($ratio_w &gt; 1 &amp;&amp; $ratio_h &gt; 1)) {
$ratio = $ratio_w &lt; $ratio_h ? $ratio_h : $ratio_w;
$tmp_w = (int)($dst_width / $ratio);
$tmp_h = (int)($dst_height / $ratio);
$tmp_img=@imagecreatetruecolor($tmp_w , $tmp_h);
$src_x = abs(($this-&gt;src_width-$tmp_w)/2) ;
$src_y = abs(($this-&gt;src_height-$tmp_h)/2) ;
@imagecopy($tmp_img, $this-&gt;sImage, 0,0,$src_x,$src_y,$tmp_w,$tmp_h);
@imagecopyresampled($this-&gt;dImage,$tmp_img,0,0,0,0,$dst_width,$dst_height,$tmp_w,$tmp_h);
@imagedestroy($tmp_img);
}else {
$ratio = $ratio_w &lt; $ratio_h ? $ratio_h : $ratio_w;
$tmp_w = (int)($this-&gt;src_width * $ratio);
$tmp_h = (int)($this-&gt;src_height * $ratio);
$tmp_img=@imagecreatetruecolor($tmp_w ,$tmp_h);
@imagecopyresampled($tmp_img,$this-&gt;sImage,0,0,0,0,$tmp_w,$tmp_h,$this-&gt;src_width,$this-&gt;src_height);
$src_x = abs($tmp_w - $dst_width) / 2 ;
$src_y = abs($tmp_h - $dst_height) / 2 ;
@imagecopy($this-&gt;dImage, $tmp_img, 0,0,$src_x,$src_y,$dst_width,$dst_height);
@imagedestroy($tmp_img);
}
break;
case 2: // only small
$this-&gt;dImage = $this-&gt;createImage($dst_width,$dst_height) ;
if(!$this-&gt;dImage) { return false ;} // failed
if($ratio_w &lt; 1 &amp;&amp; $ratio_h &lt; 1) {
$ratio = $ratio_w &lt; $ratio_h ? $ratio_h : $ratio_w;
$tmp_w = (int)($dst_width / $ratio);
$tmp_h = (int)($dst_height / $ratio);
$tmp_img=@imagecreatetruecolor($tmp_w , $tmp_h);
$src_x = (int) ($this-&gt;src_width-$tmp_w)/2 ;
$src_y = (int) ($this-&gt;src_height-$tmp_h)/2 ;
@imagecopy($tmp_img, $this-&gt;sImage, 0,0,$src_x,$src_y,$tmp_w,$tmp_h);
@imagecopyresampled($this-&gt;dImage,$tmp_img,0,0,0,0,$dst_width,$dst_height,$tmp_w,$tmp_h);
@imagedestroy($tmp_img);
}elseif($ratio_w &gt; 1 &amp;&amp; $ratio_h &gt; 1) {
$dst_x = (int) abs($dst_width - $this-&gt;src_width) / 2 ;
$dst_y = (int) abs($dst_height -$this-&gt;src_height) / 2;
@imagecopy($this-&gt;dImage, $this-&gt;sImage,$dst_x,$dst_y,0,0,$this-&gt;src_width,$this-&gt;src_height);
}else {
$src_x=0;
$dst_x=0;
$src_y=0;
$dst_y=0;
if(($dst_width - $this-&gt;src_width) &lt; 0) {
$src_x = (int) ($this-&gt;src_width - $dst_width)/2;
$dst_x =0;
}else {
$src_x =0;
$dst_x = (int) ($dst_width - $this-&gt;src_width)/2;
}

if( ($dst_height -$this-&gt;src_height) &lt; 0) {
$src_y = (int) ($this-&gt;src_height - $dst_height)/2;
$dst_y = 0;
}else {
$src_y = 0;
$dst_y = (int) ($dst_height - $this-&gt;src_height)/2;
}
@imagecopy($this-&gt;dImage, $this-&gt;sImage,$dst_x,$dst_y,$src_x,$src_y,$this-&gt;src_width,$this-&gt;src_height);
}
break;
case 3: // keep all image size and create need size
$this-&gt;dImage = $this-&gt;createImage($dst_width,$dst_height) ;
if(!$this-&gt;dImage) { return false ;} // failed
if($ratio_w &gt; 1 &amp;&amp; $ratio_h &gt; 1) {
$dst_x = (int)(abs($dst_width - $this-&gt;src_width )/2) ;
$dst_y = (int)(abs($dst_height- $this-&gt;src_height)/2) ;
@imagecopy($this-&gt;dImage, $this-&gt;sImage, $dst_x,$dst_y,0,0,$this-&gt;src_width,$this-&gt;src_height);
}else {
$ratio = $ratio_w &gt; $ratio_h ? $ratio_h : $ratio_w;
$tmp_w = (int)($this-&gt;src_width * $ratio);
$tmp_h = (int)($this-&gt;src_height * $ratio);
$tmp_img=@imagecreatetruecolor($tmp_w ,$tmp_h);
@imagecopyresampled($tmp_img,$this-&gt;sImage,0,0,0,0,$tmp_w,$tmp_h,$this-&gt;src_width,$this-&gt;src_height);
$dst_x = (int)(abs($tmp_w -$dst_width )/2) ;
$dst_y = (int)(abs($tmp_h -$dst_height)/2) ;
@imagecopy($this-&gt;dImage, $tmp_img, $dst_x,$dst_y,0,0,$tmp_w,$tmp_h);
@imagedestroy($tmp_img);
}
break;
case 4: // keep all image but create actually size
if($ratio_w &gt; 1 &amp;&amp; $ratio_h &gt; 1) {
$this-&gt;dImage = $this-&gt;sImage; // do nothing!
}else {
$ratio = $ratio_w &gt; $ratio_h ? $ratio_h : $ratio_w;
$tmp_w = (int)($this-&gt;src_width * $ratio);
$tmp_h = (int)($this-&gt;src_height * $ratio);
$this-&gt;dImage = @imagecreatetruecolor($tmp_w ,$tmp_h);
@imagecopyresampled($this-&gt;dImage,$this-&gt;sImage,0,0,0,0,$tmp_w,$tmp_h,$this-&gt;src_width,$this-&gt;src_height);
}
break;
case 5: // if dst &gt; src , crop , if (dst &lt; src) crop fixed ratio
$ratio = $ratio_w &lt; $ratio_h ? $ratio_h : $ratio_w;
$tmp_w = (int)($dst_width / $ratio);
$tmp_h = (int)($dst_height / $ratio);
$src_x = floor(abs(($this-&gt;src_width-$tmp_w)/2)) ;
$src_y = floor(abs(($this-&gt;src_height-$tmp_h)/2)) ;
if( ($ratio_w &lt; 1 &amp;&amp; $ratio_h &lt; 1) || ($ratio_w &gt; 1 &amp;&amp; $ratio_h &gt; 1)) {
if($ratio_w &lt; 1 &amp;&amp; $ratio_h &lt; 1){
$tmp_img=imagecreatetruecolor($tmp_w , $tmp_h);
$this-&gt;dImage = imagecreatetruecolor($dst_width ,$dst_height);
imagecopy($tmp_img, $this-&gt;sImage, 0,0,$src_x,$src_y,$tmp_w,$tmp_h);
imagecopyresampled($this-&gt;dImage,$tmp_img,0,0,0,0,$dst_width,$dst_height,$tmp_w,$tmp_h);
imagedestroy($tmp_img);
}elseif($ratio_w &gt; 1 &amp;&amp; $ratio_h &gt; 1){
$this-&gt;dImage = @imagecreatetruecolor($tmp_w ,$tmp_h);
@imagecopy($this-&gt;dImage, $this-&gt;sImage, 0,0,$src_x,$src_y,$tmp_w,$tmp_h);
}
}else {
$this-&gt;dImage = @imagecreatetruecolor($tmp_w ,$tmp_h);
@imagecopy($this-&gt;dImage, $this-&gt;sImage,0,0,$src_x,$src_y,$this-&gt;src_width,$this-&gt;src_height);
}
break;
}
return $this-&gt;dImage &amp;&amp; is_resource($this-&gt;dImage) ;
}// end Crop


}
?>

本文标签:php | 图片处理 | 补白效果
上一篇:返回列表下一篇:ThinkPHP3.2.3常量参考