/**

* 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->Crop(120,80,2);

* $ic->SaveImage();

* //$ic->SaveAlpha();将补白变成透明像素保存

* $ic->destory();

*

*

*/

function make_thumb($src,$dst,$width,$height,$mode)

{

$ic=new ImageCrop($src, $dst);

$ic->Crop($width , $height , $mode);

$ic->SaveImage();

$ic->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->src_file=$src_file;

$this->dst_file=$dst_file;

if(!$dst_file) $this->dst_file = $this->src_file ;

}

function SetSrcFile($src_file) {

$this->src_file=$src_file;

}

function SetDstFile($dst_file) {

$this->dst_file=$dst_file;

}

function LoadImage() {

list($this->src_width, $this->src_height, $this->src_type) = getimagesize($this->src_file);

if(!$this->src_width || !$this->src_height || !$this->src_type){

return false;

}

switch($this->src_type) {

case IMAGETYPE_JPEG :

$this->sImage=@imagecreatefromjpeg($this->src_file);

$this->ext='jpg';

break;

case IMAGETYPE_PNG :

$this->sImage=@imagecreatefrompng($this->src_file);

$this->ext='png';

break;

case IMAGETYPE_GIF :

$this->sImage=@imagecreatefromgif($this->src_file);

$this->ext='gif';

break;

default:

break;

}

return $this->sImage && is_resource($this->sImage) ? true : false ;

}

function SaveImage($fileName='') {

$this->dst_file=$fileName ? $fileName : $this->dst_file;

if($this->dImage && is_resource($this->dImage)){

switch($this->src_type) {

case IMAGETYPE_JPEG :

@imagejpeg($this->dImage,$this->dst_file,100);

break;

case IMAGETYPE_PNG :

@imagepng($this->dImage,$this->dst_file);

break;

case IMAGETYPE_GIF :

@imagegif($this->dImage,$this->dst_file);

break;

default:

break;

}

}

}

function OutImage() {

if($this->dImage && is_resource($this->dImage)){

switch($this->src_type) {

case IMAGETYPE_JPEG :

header('Content-type: image/jpeg');

@imagejpeg($this->dImage);

break;

case IMAGETYPE_PNG :

header('Content-type: image/png');

@imagepng($this->dImage);

break;

case IMAGETYPE_GIF :

header('Content-type: image/gif');

@imagegif($this->dImage);

break;

default:

break;

}

}

}

function SaveAlpha($fileName='') {

$this->dst_file=$fileName ? $fileName . '.png' : $this->dst_file .'.png';

if($this->dImage && is_resource($this->dImage)){

@imagesavealpha($this->dImage, true);

@imagepng($this->dImage,$this->dst_file);

}

}

function OutAlpha() {

if($this->dImage && is_resource($this->dImage)){

@imagesavealpha($this->dImage, true);

header('Content-type: image/png');

@imagepng($this->dImage);

}

}

function destory() {

if($this->sImage && is_resource($this->sImage)) @imagedestroy($this->sImage);

if($this->dImage && is_resource($this->dImage)) @imagedestroy($this->dImage);

}

/**

* 创建Image资源

*/

function &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<1 || $dst_height < 1) return false;

list($this->src_width, $this->src_height, $this->src_type) = getimagesize($this->src_file);

if($this->src_width==$dst_width && $this->src_height==$dst_height){

if($this->src_file==$this->dst_file) {

return true;

}else{ // 复制一份文件:

return @copy($this->src_file, $this->dst_file) ;

}

}

$this->LoadImage();

if($dst_file) $this->dst_file=$dst_file;

$ratio_w=1.0 * $dst_width / $this->src_width;

$ratio_h=1.0 * $dst_height / $this->src_height;

$ratio=1.0;

switch($mode) {

case 1: // always crop

$this->dImage = $this->createImage($dst_width,$dst_height) ;

if(!$this->dImage) { return false ;} // failed

if( ($ratio_w < 1 && $ratio_h < 1) || ($ratio_w > 1 && $ratio_h > 1)) {

$ratio = $ratio_w < $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->src_width-$tmp_w)/2) ;

$src_y = abs(($this->src_height-$tmp_h)/2) ;

@imagecopy($tmp_img, $this->sImage, 0,0,$src_x,$src_y,$tmp_w,$tmp_h);

@imagecopyresampled($this->dImage,$tmp_img,0,0,0,0,$dst_width,$dst_height,$tmp_w,$tmp_h);

@imagedestroy($tmp_img);

}else {

$ratio = $ratio_w < $ratio_h ? $ratio_h : $ratio_w;

$tmp_w = (int)($this->src_width * $ratio);

$tmp_h = (int)($this->src_height * $ratio);

$tmp_img=@imagecreatetruecolor($tmp_w ,$tmp_h);

@imagecopyresampled($tmp_img,$this->sImage,0,0,0,0,$tmp_w,$tmp_h,$this->src_width,$this->src_height);

$src_x = abs($tmp_w - $dst_width) / 2 ;

$src_y = abs($tmp_h - $dst_height) / 2 ;

@imagecopy($this->dImage, $tmp_img, 0,0,$src_x,$src_y,$dst_width,$dst_height);

@imagedestroy($tmp_img);

}

break;

case 2: // only small

$this->dImage = $this->createImage($dst_width,$dst_height) ;

if(!$this->dImage) { return false ;} // failed

if($ratio_w < 1 && $ratio_h < 1) {

$ratio = $ratio_w < $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->src_width-$tmp_w)/2 ;

$src_y = (int) ($this->src_height-$tmp_h)/2 ;

@imagecopy($tmp_img, $this->sImage, 0,0,$src_x,$src_y,$tmp_w,$tmp_h);

@imagecopyresampled($this->dImage,$tmp_img,0,0,0,0,$dst_width,$dst_height,$tmp_w,$tmp_h);

@imagedestroy($tmp_img);

}elseif($ratio_w > 1 && $ratio_h > 1) {

$dst_x = (int) abs($dst_width - $this->src_width) / 2 ;

$dst_y = (int) abs($dst_height -$this->src_height) / 2;

@imagecopy($this->dImage, $this->sImage,$dst_x,$dst_y,0,0,$this->src_width,$this->src_height);

}else {

$src_x=0;

$dst_x=0;

$src_y=0;

$dst_y=0;

if(($dst_width - $this->src_width) < 0) {

$src_x = (int) ($this->src_width - $dst_width)/2;

$dst_x =0;

}else {

$src_x =0;

$dst_x = (int) ($dst_width - $this->src_width)/2;

}

if( ($dst_height -$this->src_height) < 0) {

$src_y = (int) ($this->src_height - $dst_height)/2;

$dst_y = 0;

}else {

$src_y = 0;

$dst_y = (int) ($dst_height - $this->src_height)/2;

}

@imagecopy($this->dImage, $this->sImage,$dst_x,$dst_y,$src_x,$src_y,$this->src_width,$this->src_height);

}

break;

case 3: // keep all image size and create need size

$this->dImage = $this->createImage($dst_width,$dst_height) ;

if(!$this->dImage) { return false ;} // failed

if($ratio_w > 1 && $ratio_h > 1) {

$dst_x = (int)(abs($dst_width - $this->src_width )/2) ;

$dst_y = (int)(abs($dst_height- $this->src_height)/2) ;

@imagecopy($this->dImage, $this->sImage, $dst_x,$dst_y,0,0,$this->src_width,$this->src_height);

}else {

$ratio = $ratio_w > $ratio_h ? $ratio_h : $ratio_w;

$tmp_w = (int)($this->src_width * $ratio);

$tmp_h = (int)($this->src_height * $ratio);

$tmp_img=@imagecreatetruecolor($tmp_w ,$tmp_h);

@imagecopyresampled($tmp_img,$this->sImage,0,0,0,0,$tmp_w,$tmp_h,$this->src_width,$this->src_height);

$dst_x = (int)(abs($tmp_w -$dst_width )/2) ;

$dst_y = (int)(abs($tmp_h -$dst_height)/2) ;

@imagecopy($this->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 > 1 && $ratio_h > 1) {

$this->dImage = $this->sImage; // do nothing!

}else {

$ratio = $ratio_w > $ratio_h ? $ratio_h : $ratio_w;

$tmp_w = (int)($this->src_width * $ratio);

$tmp_h = (int)($this->src_height * $ratio);

$this->dImage = @imagecreatetruecolor($tmp_w ,$tmp_h);

@imagecopyresampled($this->dImage,$this->sImage,0,0,0,0,$tmp_w,$tmp_h,$this->src_width,$this->src_height);

}

break;

case 5: // if dst > src , crop , if (dst < src) crop fixed ratio

$ratio = $ratio_w < $ratio_h ? $ratio_h : $ratio_w;

$tmp_w = (int)($dst_width / $ratio);

$tmp_h = (int)($dst_height / $ratio);

$src_x = floor(abs(($this->src_width-$tmp_w)/2)) ;

$src_y = floor(abs(($this->src_height-$tmp_h)/2)) ;

if( ($ratio_w < 1 && $ratio_h < 1) || ($ratio_w > 1 && $ratio_h > 1)) {

if($ratio_w < 1 && $ratio_h < 1){

$tmp_img=imagecreatetruecolor($tmp_w , $tmp_h);

$this->dImage = imagecreatetruecolor($dst_width ,$dst_height);

imagecopy($tmp_img, $this->sImage, 0,0,$src_x,$src_y,$tmp_w,$tmp_h);

imagecopyresampled($this->dImage,$tmp_img,0,0,0,0,$dst_width,$dst_height,$tmp_w,$tmp_h);

imagedestroy($tmp_img);

}elseif($ratio_w > 1 && $ratio_h > 1){

$this->dImage = @imagecreatetruecolor($tmp_w ,$tmp_h);

@imagecopy($this->dImage, $this->sImage, 0,0,$src_x,$src_y,$tmp_w,$tmp_h);

}

}else {

$this->dImage = @imagecreatetruecolor($tmp_w ,$tmp_h);

@imagecopy($this->dImage, $this->sImage,0,0,$src_x,$src_y,$this->src_width,$this->src_height);

}

break;

}

return $this->dImage && is_resource($this->dImage) ;

}// end Crop

}

?>

php 保留2位整数 补白,php图片处理类 缩放有补白效果相关推荐

  1. php居中缩放图片,PHP对图片等比缩放和补白居中

    图片的等比缩放我们需要的是一个等比缩放的公式即可: 原图宽度/新图宽度=原图高度/新图高度 有了这个等比数列,我们就可以根据需求,来计算高宽的值. 逻辑: 当原图的宽度超过我们限定的宽度,已知的就是新 ...

  2. 写了一个jquery.imagesview插件,支持图片拖动、缩放类似ACDSEE效果

    做项目的时候客户总是比较关心前台界面,这不最近又遇到一个难缠的客户.要求在前台的缩略图点开后查看高分辨率的图片,并且最好能像ACDSEE那样方便浏览,支持拖动.按比例放大缩小. 这样的效果记得在SIN ...

  3. java保留两位小数(java保留两位小数)

    197保留两位小数是多?1.197保留两位小数是多少 1.20 P.S. 你的支持是我坚持的动力~,点下好评吧,亲!!! 两位小数的积是3?两位小数的积是3.872,保留两位小数是,保留 选中区域,点 ...

  4. PHP等比缩放并补白

    /** * 图片等比缩放并补白* @param string $filename 图片路径* @param number $width 缩放宽度* @param number $height 缩放高度 ...

  5. java实现两个整数相除保留一位小数

    //整数相除 保留一位小数public static String division(int a ,int b){String result = "";float num =(fl ...

  6. python除法保留两位小数_除法巧算(Ⅱ),任何整数除7~9,11的快速心算技巧,爸妈收藏...

    今天是除法巧算的第二节,所有从加减到乘除的巧算,也暂时总结到这里.其实巧算方法远不止这些,考虑到孩子的接受能力,所以暂时先发布这些. 回顾上期,请戳:除法巧算(Ⅰ),省了草稿纸心算整数除2~6的技巧, ...

  7. js input 正则保留2位小数中文拼音输入问题 + 限制输入整数的方案

    js input 正则保留2位小数中文拼音输入问题 + 限制输入整数的方案 problem 背景 element ui el-input组件 原生input事件 需求 限制输入框的输入 只允许输入数字 ...

  8. parseFloat() 小数点后不为0,就保留2位。否则为整数

    parseFloat(100.99) 100.99 parseFloat(100.00) 100 parseFloat(.00) 0 小数点后不为0,就保留2位.否则为整数

  9. 编写一个函数my_power,用循环的方法实现 返回一个float类型数的某个整数次幂(保留6位小数)。 如调用my_power(3.14,-2)返回0.101424

    编写一个函数my_power,用循环的方法实现返回一个float类型数的某个整数次幂(保留6位小数).如调用my_power(3.14,-2)返回0. #include <stdio.h> ...

最新文章

  1. python迭代列表_Python迭代列表中列的元素
  2. VTK:PolyData之KochanekSpline
  3. 文件服务器和客户模式有什么区别,客户端和服务器端编程有什么区别?
  4. [Leetcode] Reverse Integer
  5. 一步步编写操作系统 66 浅析c库函数与系统调用1
  6. li:nth-child()和 li:nth-of-type()选择器区别
  7. 华为招聘公关总监:接触近10位路透资深记者 年薪高达20万美元
  8. 计算机网络大连理工大学,大连理工大学计算机网络.doc
  9. swiftui动画之tab自定义切换动画_骨骼动画制作|万彩骨骼大师
  10. python什么时候用进程什么时候用线程_[译] Python 的多线程与多进程
  11. vue实现导入导出xlsx exel的数据渲染到table表格上面,表格数据改动然后再导出数据
  12. java宠物商店_Java如何实现宠物商店管理 Java实现宠物商店管理代码示例
  13. 用java把word转pdf
  14. 浅谈web前端工程师hr面试经典问题20+
  15. html右边显示不全,显示器右边显示不全怎么办
  16. 万豪环保系列之《紫外线消毒器》
  17. 【刷题笔记】CG第二周
  18. 批量将一个 PPT 幻灯片文件按固定页数拆分成多个幻灯片文件
  19. HGVS制订的变异位点命名规则
  20. 解决“该项目不在请确认该项目位置,然后重试” 文件无法删除问题

热门文章

  1. 研究报告 | “洗剪吹”市场逆势增长,黑马突围捷登三大电商平台销量榜首
  2. Kettle 9.0 源码编译
  3. python3.6.国家政策文本分析代码
  4. 大吉大利,今晚吃鸡——跑毒篇
  5. RT-Thread驱动——RTC PCF8563
  6. python匿名函数调用_(Python) 函数、匿名函数
  7. python 今天日期是多少,python time时间,日期,时间
  8. 用iPhone一秒拍摄3D照片,Facebook这项技术厉害了
  9. 中医是如何辩证出脾胃湿热的?
  10. 视频超分:TGA(Video Super-resolution with Temporal Group Attention)