class image {
protected $img;
protected $types = array(
1 => 'gif',
2 => 'jpg',
3 => 'png',
6 => 'bmp'
);
public function __construct($img=''){
!$img && $this->param($img);
}
public function param($img){
$this->img = $img;
return $this;
}
public function getImageInfo($img){
$info = @getimagesize($img);
if(isset($this->types[$info[2]])){
$info['ext'] = $info['type'] = $this->types[$info[2]];
} else{
$info['ext'] = $info['type'] = 'jpg';
}
$info['type'] == 'jpg' && $info['type'] = 'jpeg';
$info['size'] = @filesize($img);
return $info;
}
public function thumb($filename,$new_w=160,$new_h=120,$cut=0,$big=0){
$info = $this->getImageInfo($this->img);
if(!empty($info[0])) {
$old_w = $info[0];
$old_h = $info[1];
$type = $info['type'];
$ext = $info['ext'];
unset($info);
if($old_w
return false;
}
if($cut == 0){
$scale = min($new_w/$old_w, $new_h/$old_h);
$width = (int)($old_w*$scale);
$height = (int)($old_h*$scale);
$start_w = $start_h = 0;
$end_w = $old_w;
$end_h = $old_h;
} elseif($cut == 1){
$scale1 = round($new_w/$new_h,2);
$scale2 = round($old_w/$old_h,2);
if($scale1 > $scale2){
$end_h = round($old_w/$scale1,2);
$start_h = ($old_h-$end_h)/2;
$start_w = 0;
$end_w = $old_w;
} else{
$end_w = round($old_h*$scale1,2);
$start_w = ($old_w-$end_w)/2;
$start_h = 0;
$end_h = $old_h;
}
$width = $new_w;
$height= $new_h;
} elseif($cut == 2){
$scale1 = round($new_w/$new_h,2);
$scale2 = round($old_w/$old_h,2);
if($scale1 > $scale2){
$end_h = round($old_w/$scale1,2);
$end_w = $old_w;
} else{
$end_w = round($old_h*$scale1,2);
$end_h = $old_h;
}
$start_w = 0;
$start_h = 0;
$width = $new_w;
$height= $new_h;
}
$createFun = 'ImageCreateFrom'.$type;
$oldimg = $createFun($this->img);
if($type!='gif' && function_exists('imagecreatetruecolor')){
$newimg = imagecreatetruecolor($width, $height);
} else{
$newimg = imagecreate($width, $height);
}
if(function_exists("ImageCopyResampled")){
ImageCopyResampled($newimg, $oldimg, 0, 0, $start_w, $start_h, $width, $height, $end_w,$end_h);
} else{
ImageCopyResized($newimg, $oldimg, 0, 0, $start_w, $start_h, $width, $height, $end_w,$end_h);
}
$type == 'jpeg' && imageinterlace($newimg,1);
$imageFun = 'image'.$type;
!@$imageFun($newimg,$filename) && die("error!");
ImageDestroy($newimg);
ImageDestroy($oldimg);
return $filename;
}
return false;
}
public function water($filename,$water,$pos=0,$pct=80){//加水印
$info = $this->getImageInfo($water);
if(!empty($info[0])){
$water_w = $info[0];
$water_h = $info[1];
$type = $info['type'];
$fun = 'imagecreatefrom'.$type;
$waterimg = $fun($water);
} else{
return false;
}
$info = $this->getImageInfo($this->img);
if(!empty($info[0])){
$old_w = $info[0];
$old_h = $info[1];
$type = $info['type'];
$fun = 'imagecreatefrom'.$type;
$oldimg = $fun($this->img);
} else{
return false;
}
$water_w >$old_w && $water_w = $old_w;
$water_h >$old_h && $water_h = $old_h;
dump($waterimg);
dump($oldimg);
switch($pos){
case 0:
$posX = rand(0,($old_w - $water_w));
$posY = rand(0,($old_h - $water_h));
break;
case 1:
$posX = 0;
$posY = 0;
break;
case 2:
$posX = ($old_w - $water_w) / 2;
$posY = 0;
break;
case 3:
$posX = $old_w - $water_w;
$posY = 0;
break;
case 4:
$posX = 0;
$posY = ($old_h - $water_h) / 2;
break;
case 5:
$posX = ($old_w - $water_w) / 2;
$posY = ($old_h - $water_h) / 2;
break;
case 6:
$posX = $old_w - $water_w;
$posY = ($old_h - $water_h) / 2;
break;
case 7:
$posX = 0;
$posY = $old_h - $water_h;
break;
case 8:
$posX = ($old_w - $water_w) / 2;
$posY = $old_h - $water_h;
break;
case 9:
$posX = $old_w - $water_w;
$posY = $old_h - $water_h;
break;
default:
$posX = rand(0,($old_w - $water_w));
$posY = rand(0,($old_h - $water_h));
break;
}
imagealphablending($oldimg, true);
imagecopymerge($oldimg, $waterimg, $posX, $posY, 0, 0, $water_w,$water_h,$pct);
$fun = 'image'.$type;
!@$fun($oldimg, $filename) && die('error!');
imagedestroy($oldimg);
imagedestroy($waterimg);
return $filename;
}
}
?>
$img1 = './image/test.jpg';
$img2 = './image/test_new.jpg';
$water = './image/water.gif';
$img = new image();
$img->param($img1)->thumb('./image/test_0.jpg', 200,200,0);
$img->param($img1)->thumb('./image/test_1.jpg', 200,200,1);
$img->param($img1)->thumb('./image/test_2.jpg', 200,200,2);
$img->param($img1)->water($img2,$water,9);
?>

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

PhpStorm Mac 版本
最新(2018.2.1 )专业的PHP集成开发工具

Dreamweaver Mac版
视觉化网页开发工具

禅工作室 13.0.1
功能强大的PHP集成开发环境

螳螂BT
Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

SublimeText3汉化版
中文版,非常好用