一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

PHP 處理圖片的類實現代碼

復制代碼 代碼如下:
<?php
/**
* author:yagas
* email:yagas60@21cn.com
*/
class Image
{
/** 類保護變量 */
protected $th_width = 100;
protected $th_height = 50;
protected $quality = 85; //圖片質量
protected $transparent = 50; //水印透明度
protected $background = "255,255,255"; //背景顏色
/**
* 生成縮略圖文件
* @param $src 原圖文件
* @param $dst 目標文件
*/
public function thumb($src, $dst=null, $output=true)
{
$thumb = array($this->th_width, $this->th_height);
$this->scale($src, $thumb, $dst, $output);
}
/**
* 對圖片按百分比進行縮放處理
* @param string $src 原圖文件
* @param string $dst 輸入的目標文件
* @param float/array $zoom 縮放比例,浮點類型時按百分比綻放,數組類型時按指定大小時行縮放
* @param boolean $output 是否生成文件輸出
*/
public function scale($src, $dst=null, $zoom=1, $output=true)
{
if(!file_exists($src)) die('File not exists.');
if(!$zoom) die('the zoom undefine.');
$src_im = $this->IM($src);
$old_width = imagesx($src_im);
if(is_float($zoom)) {
//按百分比進行縮放
$new_width = $old_width * $zoom;
}
elseif(is_array($zoom)) {
//明確的縮放尺寸
$new_width = $zoom[0];
}
//是否定義的縮放的高度
if(!isset($zoom[1])) {
//等比例縮放
$resize_im = $this->imageresize($src_im, $new_width);
}
else {
//非等比例縮放
$resize_im = $this->imageresize($src_im, $new_width, $zoom[1]);
}
if(!$output) {
header("Content-type: image/jpeg");
imagejpeg($resize_im, null, $this->quality);
}
else {
$new_file = empty($dst)? $src:$dst;
imagejpeg($resize_im, $new_file, $this->quality);
}
imagedestroy($im);
imagedestroy($nIm);
}
/**
* 對圖片進行裁切
* @param $src 原始文件
* @param $dst 目標文件
* @param $output 是否生成目標文件
*/
public function capture($src, $dst=null, $output=true) {
if(!file_exists($src)) die('File not exists.');
$width = $this->th_width;
$height = $this->th_height;
$src_im = $this->IM($src);
$old_width = imagesx($src_im);
$old_height = imagesy($src_im);
$capture = imagecreatetruecolor($width, $height);
$rgb = explode(",", $this->background);
$white = imagecolorallocate($capture, $rgb[0], $rgb[1], $rgb[2]);
imagefill($capture, 0, 0, $white);
//當圖片大于縮略圖時進行縮放
if($old_width > $width && $old_height>$height) {
$resize_im = $this->imageresize($src_im, $width);
//圖片比例不合規范時,重新計算比例進行裁切
if(imagesy($resize_im) < $height) {
$proportion = $old_height/$this->th_height;
$resize_im = $this->imageresize($src_im, $old_width/$proportion);
}
$posx = 0;
$posy = 0;
}
else {
//圖片小于縮略圖時將圖片居中顯示
$posx = ($width-$old_width)/2;
$posy = ($height-$old_height)/2;
$resize_im = $src_im;
}
imagecopy($capture, $resize_im, $posx, $posy, 0, 0, imagesx($resize_im), imagesy($resize_im));
if(!$output) {
header("Content-type: image/jpeg");
imagejpeg($capture, null, $this->quality);
}
else {
$new_file = empty($dst)? $src:$dst;
imagejpeg($capture, $new_file, $this->quality);
}
imagedestroy($src_im);
@imagedestroy($resize_im);
imagedestroy($capture);
}
/**
* 寫入水印圖片
* @param $src 需要寫入水印的圖片
* @param $mark 水印圖片
* @param $transparent 水印透明度
*/
public function mark($src, $mark, $dst='', $output=true)
{
$mark_info = getimagesize($mark);
$src_info = getimagesize($src);
list($mw,$mh) = $mark_info;
list($sw,$sh) = $src_info;
$px = $sw - $mw;
$py = $sh - $mh;
$im = $this->IM($src);
$mim = $this->IM($mark);
imagecopymerge($im, $mim, $px, $py, 0, 0, $mw, $mh, $this->transparent);
if($output){
$new_file = empty($dst)? $src:$dst;
imagejpeg($im, $new_file, $this->quality);
}
else
{
header('Content-type: image/jpeg');
imagejpeg($im);
}
imagedestroy($im);
imagedestroy($mim);
}
/**
* 通過文件,獲取不同的GD對象
*/
protected function IM($file)
{
if(!file_exists($file)) die('File not exists.');
$info = getimagesize($file);
switch($info['mime'])
{
case 'image/gif':
$mim = imagecreatefromgif($file);
break;
case 'image/png':
$mim = imagecreatefrompng($file);
imagealphablending($mim, false);
imagesavealpha($mim, true);
break;
case 'image/jpeg':
$mim = imagecreatefromjpeg($file);
break;
default:
die('File format errors.');
}
return $mim;
}
/**
* 對圖片進行縮放的處理
* @param resource $src_im 圖像GD對象
* @param integer $width 圖片的寬度
* @param integer $height 圖片的高度,如果不設置高度,將對圖片進行等比例縮放
* @return resuorce $im 返回一個GD對象
*/
protected function imageresize($src_im, $width, $height=null) {
$old_width = imagesx($src_im);
$old_height = imagesy($src_im);
$proportion = $old_width/$old_height;
$new_width = $width;
$new_height = is_null($height)? round($new_width / $proportion):$height;
//創建新的圖象并填充默認的背景色
$im = imagecreatetruecolor($new_width, $new_height);
$rgb = explode(",", $this->background);
$white = imagecolorallocate($im, $rgb[0], $rgb[1], $rgb[2]);
imagefill($im, 0, 0, $white);
//對圖片進行縮放
imagecopyresized($im, $src_im, 0, 0, 0, 0, $new_width, $new_height, $old_width, $old_height);
return $im;
}
/**
* 類變量賦值
*/
public function __set($key, $value)
{
$this->$key = $value;
}
/**
* 獲取類變量值
*/
public function __get($key)
{
return $this->$key;
}
}
?>

php技術PHP 處理圖片的類實現代碼,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 天天天干 | 亚洲欧美国产日产综合不卡 | 亚洲女人影院想要爱 | 国产精品夜色视频一区二区 | 91社区在线观看 | 一区二区三区视频免费 | 日本加勒比中文字幕 | www.五月婷| 性欧美午夜高清在线观看 | 91精品国产91久久久久久最新 | 色婷婷影院在线视频免费播放 | 韩国毛片免费 | 91社区在线观看 | 在线免费看污视频 | 国产精品久久1024 | 影音先锋中文一区亚洲 | 国产精品免费视频播放 | 国产精品久久久亚洲第一牛牛 | 色偷偷91久久综合噜噜噜 | 性xxxxxxxxx18欧美| 精品日韩欧美一区二区三区在线播放 | 亚洲一区中文字幕在线观看 | 国产精品极品美女自在线看免费一区二区 | 在线观看黄色 | 欧美成人午夜视频免看 | 东方伊人免费在线观看 | 精品视频自拍 | 久久精品乱子伦观看 | 成人免费在线视频观看 | 在线播放黄色 | 国产成人精品视频免费大全 | 午夜国产高清精品一区免费 | 国产美女在线精品免费观看 | 色多多视频在线观看 | 美女把屁股扒开让男人桶视频 | 乱人伦一区二区三区 | 成人观看的视频三级 | 亚洲一区二区三区麻豆 | 久久国内精品自在自线400部o | 色天使色婷婷在线影院亚洲 | 精品在线第一页 |