- /**
- * 출처 : 인터넷
- */
- 클래스 이미지
- {
- var $w_pct = 100; > var $w_quality = 100; //품질
- var $w_minwidth = 500; //최소 너비
- var $w_minheight = 500; //최소 높이
- //이미지입니다. 인터레이스
- var $fontfile; //글꼴 파일
- var $w_img; //기본 워터마크 이미지
-
- function __construct()
- {
- $this->fontfile = $_SERVER ['DOCUMENT_ROOT'].'/public/fonts/simhei.ttf';
- $this->w_img = ''
- }
- 함수 이미지()
- {
- $this ->__construct();
- }
-
- function info($img)
- {
- $imageinfo = getimagesize($img); //이미지 정보 배열 반환 0=> ;Width 픽셀 1=> 높이 픽셀 2=>는 이미지 유형입니다. 3 =>은 텍스트 문자열이고, 내용은 "height="yyy" width="xxx"",
- if($ imageinfo == = false) return false
- $imagetype = strtolower(substr(image_type_to_extension($imageinfo[2]),1)) //이미지 파일 형식 가져오기 $imageinfo[2]는 이미지 형식의 표시입니다
- $imagesize = filesize($img); //이미지 크기
- $info = array(
- 'width'=>$imageinfo[0],
- 'height'=>$imageinfo[1 ],
- 'type'=>$imagetype,
- 'size'=>$imagesize,
- 'mime'=>$imageinfo['mime']
-
- return $info
- }
-
- /**
- * 缩略图
- *
- * @param string $image
- * @param string $filename
- * @param int $maxwidth
- * @param int $maxheight
- * @param string $suffix
- * @param int $autocut
- * @return string
- */
- 함수 Thumb($image, $filename = '',$maxwidth = 50, $maxheight = 50, $suffix= '_thumb', $autocut = 0)
- {
- if( !$this->check($image)) return false
- $info = $this->info($image); //이미지 정보 가져오기
- if($info === false) return false
- $srcwidth = $info['width'] //소스 이미지 너비
- $srcheight = $info['height ']; //소스 이미지 높이
- $pathinfo = pathinfo($image);
- $type = $pathinfo['extension'] //확장자 가져오기
- if(!$type) $type = $info['type']; //얻지 못한 경우 $info['type'] 사용
- $type = strtolower($type)
- unset($info)
- $scale = min ($maxwidth/$srcwidth, $maxheight/$srcheight); //썸네일 비율 가져오기
- //소스 이미지에 따른 비율 가져오기
- $createwidth = $width = (int) ($srcwidth* $ scale);//썸네일 너비 가져오기();
- $createheight = $height = (int)($srcheight*$scale);//(); //썸네일 높이 가져오기
- $psrc_x = $ psrc_y = 0;
- if($autocut) //썸네일 비율에 따라
- 가져오기 {
- if($maxwidth/$maxheight<$srcwidth/$srcheight && $maxheight>=$height) // 썸네일이 원본 이미지보다 비례적으로 좁은 경우
- {
- $width = $maxheight/$height*$width; //해당 비율에 따라 너비가 처리됩니다.
- $height = $maxheight;/ //높이는 변경되지 않습니다
- }
- elseif($maxwidth/$maxheight>$srcwidth/$srcheight && $maxwidth>=$width)//썸네일이 소스 이미지보다 비례적으로 넓은 경우
- {
- $height = $maxwidth/$width*$height;//
- $width = $maxwidth;
- }
- if($maxwidth == '55'){
- $width = ' 55';
- $createwidth = '55';
- }
- if($maxwidth == '110'){
- $width = '110'
- $createwidth = '110' ;
- }
-
- }
- if($srcwidth<='280' && $maxwidth != '110'){
- $createwidth= $srcwidth
- $createheight; srcheight;
- }
- $createfun = 'imagecreatefrom'.($type=='jpg' ? 'jpeg' : $type) //다른 이미지 처리 함수 찾기
- $srcimg = $ createfun($ image); //이미지 식별자 반환
- if($type != 'gif' && function_exists('imagecreatetruecolor')){
- $thumbimg = imagecreatetruecolor($createwidth, $createheight); 컬러 이미지
- }else{
- if($maxwidth == '110' && $srcheight >= $srcwidth){
- $height1 = 72;
- $thumbimg = imagecreate($width, $height1); 팔레트 기반 이미지
- }elseif ($maxwidth == '110' && $srcheight <= $srcwidth){
- $width1 = 110; $thumbimg = imagecreate($width1, $ height) ; //새 팔레트 기반 이미지 생성
- }else{
- $thumbimg = imagecreate($width, $height) //새 팔레트 기반 이미지 생성
- }
- }
- if(function_exists('imagecopyresampled')){ //이미지의 복사본 부분을 리샘플링하고 크기를 조정합니다. 트루 컬러
- //imagecopyresampled(새 이미지, 원본 이미지, 새 이미지의 왼쪽 상단에서 x 거리, new 이미지 소스 이미지의 왼쪽 위 모서리로부터의 y 거리, 소스 이미지의 왼쪽 위 모서리로부터의 x 거리, 소스 이미지의 왼쪽 위 모서리로부터의 y 거리, 새 이미지 너비, 새 이미지 높이, 소스 이미지 너비, 소스 이미지 높이)
- if($maxwidth == '110' && $srcheight >= $srcwidth){
- $psrc_x = 0
- $psrc_yz = $height/2
- $psrc_y = $psrc_yz
- $width = '110';
- }
- if($maxwidth == '110' && $srcheight >= $srcwidth && $srcheight>= '72' && $srcwidth < = '110'){
- $psrc_x = 0;
- $ psrc_yz = $height/2;
- $psrc_y = $psrc_yz; > if($maxheight == '72' && $srcheight <= $srcwidth && $srcheight<= '72' && $srcwidth >= '110'){
- $cha = ($maxheight-$srcheight) /2; $psrc_y = -($cha);
- $height = '72'
- $srcheight = '72'; > imagecopyresampled($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y , $width, $height, $srcwidth, $srcheight)
-
- }else{ //이미지의 일부를 복사하고 크기를 조정합니다. , 팔레트
- imagecopyreized($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $width, $height, $srcwidth, $srcheight)
- }
- if($type==' gif' || $type=='png')
- {
- //imagecolorallocate는 이미지에 색상을 할당합니다
- $Background_color = imagecolorallocate($thumbimg, 0, 255, 0); 팔레트를 기준으로 이미지의 배경색을 녹색으로 지정합니다.
- // imagecolortransparent 색상을 투명 색상으로 정의합니다.
- imagecolortransparent($thumbimg, $Background_color) // 이 줄이 다음과 같은 경우 투명 색상으로 설정합니다. 주석 처리하면 녹색 이미지가 출력됩니다
- }
- // 이미지 인터레이스가 인터레이스를 활성화하거나 비활성화합니다
- if($type=='jpg' || $type=='jpeg') imageinterlace($thumbimg, $this->interlace);
- $imagefun = 'image'.($ type=='jpg' ? 'jpeg' : $type)
- //imagejpeg imagegif imagepng
- if(empty( $filename)) $filename = substr($image, 0, strrpos($image, ' .')).$suffix.'.'.$type; //파일 이름 가져오기
- //aaa.gif aaa_thumb. gif
- $imagefun($thumbimg, $filename); //새 이미지
- imagedestroy($thumbimg); //썸네일 삭제
- imagedestroy($srcimg); //소스 이미지 삭제
- return $ 파일 이름;
- }
- /**
- * 너비 또는 높이 제한
- *
- * @param string $image
- * @param int $maxwidth
- * @param int $maxheight
- * @param string $suffix
- * @return 문자열
- */
- function Thumb3($image,$maxwidth = 0, $maxheight = 0, $suffix='_thumb')
- {
- if( !$this->check($image)) return false
- $info = $this->info($image) //이미지 정보 가져오기
- if($info === false; ) return false
- $srcwidth = $info['width']; / /소스 이미지 너비
- $srcheight = $info['height'] //소스 이미지 높이
- $pathinfo = pathinfo( $image);
- $type = $pathinfo['extension']; / /확장자 가져오기
- if(!$type) $type = $info['type'] //얻지 못한 경우 $를 사용합니다. info['type']
- $type = strtolower($type) ;
- unset($info)
- if($maxwidth==0){
- $scale = $maxheight/$srcheight ;
- if($scale<1){
- $createwidth = $srcwidth*$scale
- $createheight = $maxheight; }else{
- $createwidth = $srcwidth; > $createheight = $srcheight
- }
- }
- if($maxheight==0){
- $scale = $maxwidth/$srcwidth
- if($scale<1){
- $createwidth = $maxwidth; > $createheight = $srcheight*$scale;
- }else{
- $createwidth = $srcwidth;
- $createheight = $srcheight;
- }
- }
- $psrc_x = $psrc_y = 0;
- $createfun = 'imagecreatefrom'.($type=='jpg' ? 'jpeg' : $type); //다른 이미지 처리 함수 찾기
- $srcimg = $createfun($image) ; //이미지 식별자 반환
- if($type != 'gif' && function_exists('imagecreatetruecolor')){
- $thumbimg = imagecreatetruecolor($createwidth, $createheight) //새 트루 컬러 이미지 생성;
- }else{
- $thumbimg = imagecreate($createwidth, $createheight); //새 팔레트 기반 이미지 생성
- }
- if(function_exists('imagecopyresampled')){ // 리샘플 이미지의 일부를 복사하고 크기 조정, 트루 컬러
- //imagecopyresampled(새 이미지, 원본 이미지, 새 이미지의 왼쪽 상단 모서리로부터의 x 거리, 새 이미지의 왼쪽 상단 모서리로부터의 y 거리, 원본 이미지의 x 거리 소스 이미지의 왼쪽 위 모서리, 소스 이미지의 왼쪽 위 모서리로부터 y 거리, 새 이미지 너비, 새 이미지 높이, 소스 이미지 너비, 소스 이미지 높이)
- imagecopyresampled($thumbimg, $srcimg, 0 , 0, $psrc_x, $psrc_y, $createwidth, $createheight, $srcwidth, $srcheight );
-
- }else{ //이미지의 일부를 복사하고 크기를 조정하고, 팔레트
- imagecopyreized($thumbimg, $srcimg, 0, 0, $psrc_x, $psrc_y, $createwidth, $createheight, $srcwidth, $srcheight)
- }
- if($type=='gif' || $type=='png ')
- {
- //imagecolorallocate는 이미지에 색상을 할당합니다.
- $Background_color = imagecolorallocate($thumbimg, 0, 255, 0) // 팔레트 기반 이미지를 배경색으로 채우고 할당합니다. 녹색
- // imagecolortransparent는 색상을 투명 색상으로 정의합니다.
- imagecolortransparent($thumbimg, $Background_color) // 이 줄을 주석 처리하면 녹색 이미지가 출력됩니다.
- }
- // 이미지 인터레이스는 인터레이스를 활성화하거나 비활성화합니다.
- if($type== 'jpg' || $type=='jpeg') imageinterlace($thumbimg, $this->interlace)
- $ imagefun = 'image'.($type=='jpg' ? 'jpeg' : $ type)
- //imagejpeg imagegif imagepng
- $filename = substr($image, 0, strrpos($image, ' .')).$suffix.'.'.$type; //파일 이름 가져오기
- //aaa.gif aaa_thumb.gif
- $imagefun($thumbimg, $filename); 🎜> imagedestroy($thumbimg); //썸네일 삭제
- imagedestroy($srcimg) ; //소스 이미지 삭제
- return $filename; 🎜> 정적 함수 Thumb2($image, $thumbname, $type='', $maxWidth= 200, $maxHeight=50, $interlace=true) {
- // 원본 이미지 정보 가져오기
- $info = Image ::getImageInfo($image);
- if ($info !== false) {
- $srcWidth = $info['width']
- $srcHeight = $info['height']; 🎜> $type = 비어 있음($type) ? $info['type'] : $type ;
- $type = strtolower($type)
- $interlace ? 1 : 0; unset($info);
- $scale = max($maxWidth / $srcWidth, $ maxHeight / $srcHeight); // 크기 조정 비율 계산
- // 원본 이미지와 썸네일 간의 비율을 판단합니다. 예를 들어 원본 이미지가 썸네일보다 넓은 경우 양쪽을 자르고 그 반대로도 자릅니다.
- if($maxWidth / $srcWidth > $ maxHeight / $srcHeight){
- //Higher than
- $ srcX = 0;
- $srcY = ($srcHeight - $maxHeight / $scale) / 2 ; $cutWidth = $srcWidth;
- $cutHeight = $maxHeight / $scale;
- //
- 보다 넓음 $srcX = ($srcWidth - $maxWidth / $scale) / 2;
- $srcY = 0
- $cutWidth = $maxWidth / $scale; 컷높이 = $srcHeight
- }
-
- // 载入原图
- $createFun = 'ImageCreateFrom' . ($type == 'jpg' ? 'jpeg' : $type);
- $srcImg = $createFun($image);
-
- //创建缩略图
- if ($type != 'gif' && function_exists('imagecreatetruecolor'))
- $thumbImg = imagecreatetruecolor($maxWidth, $maxHeight);
- else
- $thumbImg = imagecreate($maxWidth, $maxHeight);
-
- // 复제조그림
- if (function_exists("ImageCopyResampled"))
- imagecopyresampled($thumbImg, $srcImg, 0, 0, $srcX, $srcY, $maxWidth, $maxHeight, $ cutWidth, $cutHeight);
- else
- imagecopyreized($thumbImg, $srcImg, 0, 0, $srcX, $srcY, $maxWidth, $maxHeight, $cutWidth, $cutHeight);
- if ('gif' == $type || 'png' == $type) {
- //imagealphablending($thumbImg, false);//取消默认的混color模式
- //imagesavealpha( $thumbImg,true);//설정된 알파 통신
- $Background_color = imagecolorallocate($thumbImg, 0, 255, 0); // 指派一个绿color
- imagecolortransparent($thumbImg, $Background_color); // 设置为透밝은색,若注释掉该行则输流绿color的图
- }
-
- // 对jpeg图shape设置隔行扫描
- if ('jpg' == $type || ' jpeg' == $type)
- imageinterlace($thumbImg, $interlace);
-
- // 生成图文
- $imageFun = 'image' . ($type == 'jpg' ? 'jpeg' : $type);
- @chmod(dirname($thumbname),0777);
- $imageFun($thumbImg, $thumbname);
- imagedestroy($thumbImg);
- imagedestroy($srcImg);
- $thumbname을 반환합니다.
- }
- false를 반환합니다.
- }
-
-
- /**
- * 이미지 정보 가져오기
- * @static
- * @access public
- * @param string $image 이미지 파일 이름
- * @return 혼합
- */
-
- 정적 함수 getImageInfo($img) {
- $imageInfo = getimagesize($img);
- if ($imageInfo !== false) {
- $imageType = strtolower(substr(image_type_to_extension($imageInfo[2]), 1));
- $imageSize = 파일 크기($img);
- $info = array(
- "너비" => $imageInfo[0],
- "높이" => $imageInfo[1],
- "유형" => $imageType,
- "크기" => $imageSize,
- "mime" => $imageInfo['mime']
- );
- $정보 반환;
- } else {
- false를 반환합니다.
- }
- }
-
- //watermark(源图,生成文件,生成位置,水印文件,水印文本,背景color)
- function watermark($source, $target = '' , $w_pos = 9, $w_img = '', $w_text = '', $w_font = 12, $w_color = '#cccccc',$x='',$y='')
- {
- if( !$this->check($source)) return false;
- if(!$target) $target = $source;
- if ($w_img == '' && $w_text == '')
- $w_img = $this->w_img;
- $source_info = getimagesize($source);
- $source_w = $source_info[0]; //获取宽
- $source_h = $source_info[1]; //获取高
- if($source_w w_minwidth || $source_h w_minheight) return false; //宽和高达不到要求直接返回
- switch($source_info[2]) //새 페이지
- {
- 사례 1 :
- $source_img = imagecreatefromgif($source);
- 휴식;
- 사례 2 :
- $source_img = imagecreatefromjpeg($source);
- 휴식;
- 사례 3 :
- $source_img = imagecreatefrompng($source);
- 휴식;
- 기본값 :
- false를 반환합니다.
- }
- if(!empty($w_img) && file_exists($w_img)) //수印文件
- {
- $ifwaterimage = 1; //是否水印图
- $water_info = getimagesize($w_img); //수용성
- $width = $water_info[0];
- $height = $water_info[1];
-
- 스위치($water_info[2])
- {
- 사례 1 :
- $water_img = imagecreatefromgif($w_img);
-
- 휴식;
- 사례 2 :
- $water_img = imagecreatefromjpeg($w_img);
- 휴식;
- 사례 3 :
- $water_img = imagecreatefrompng($w_img);
-
- 휴식;
- 기본값 :
- 반환;
- }
- }
- else
- {
- $ifwaterimage = 0; //imagettfbbox(글꼴 크기, 글꼴 각도, 글꼴 파일, 파일)
- // echo $this->fontfile
- $temp = imagettfbbox(ceil($w_font*1.6), 0, $ this->fontfile, $w_text);//트루타입 글꼴을 사용하여 텍스트 범위 가져오기
- $width = $temp[4] - $temp[6] //오른쪽 위 모서리 X 위치 - 왼쪽 위 모서리 X position
- $height = $temp[3] - $temp[5]; //오른쪽 하단 Y 위치 - 오른쪽 상단 Y 위치
- unset($temp)
- }
- switch( $w_pos)
- {
- 사례 0: //임의의 위치
- $wx = rand(0,($source_w - $width))
- $wy = rand(0,($source_h - $height)) ;
- 중단;
- 사례 1: //왼쪽 상단
- $wx = 25;
- 중단; 상단 중간 위치
- $wx = ($source_w - $width) / 2;
- $wy = 0
- break
- 사례 3: //오른쪽 상단
- $wx = $ source_w - $width;
- $wy = 0;
- break;
- 사례 4: //왼쪽 중간 위치
- $wx = 0; height) / 2;
- break;
- 사례 5: //중간 위치
- $wx = ($source_w - $width) / 2; $wy = ($source_h - $height) / 2;
- break;
- 사례 6: //하단 중간 위치
- $wx = ($source_w - $width) / 2
- $wy = $source_h - $height; ;
- 사례 7: / /왼쪽 아래 모서리
- $wx = 0;
- $wy = $source_h - $height;
- break
- 사례 8: //오른쪽
- $wx = $source_w - $width ;
- $wy = ($source_h - $height) /2
- break;
- 사례 9: //오른쪽 하단
- $wx = $source_w - $width;
- $wy = $source_h - $height ;
- break;
- 기본값: //Random
- $wx = rand(0,($source_w - $width));
- $wy = rand(0,($ source_h - $height));
- break
- 케이스 10://맞춤 위치
- $wx = $x
- $wy; y;
- 사례 11: //하단 중간 위치--공예품 고객에게만 해당
- $wx = ($source_w - $width) / 2
- $wy = $source_h - $height-50; 🎜> break;
- break;
- }
- if($ifwaterimage) //워터마크 이미지가 있는 경우
- {
-
- //imagecopymerge는 이미지의 일부를 복사하고 병합합니다
- //매개변수(소스 이미지, 워터마크 이미지, 소스 이미지 x 위치로 복사, 소스 이미지 y 위치로 복사, 워터마크 이미지 x 위치, 워터마크 이미지 y 위치, 높이, 너비, 투명도)
- //imagecopymerge ($source_img, $water_img, $wx, $wy, 0, 0, $width, $height, $this->w_pct)
-
- imagecopy($source_img,$water_img,$wx,$wy ,0,0,$width,$height)
- }
- else
- {
- if(!empty($w_color) && (strlen($w_color)==7))
- {
- $r = hexdec(substr($w_color,1 ,2)); //빨간색 가져오기
- $g = hexdec(substr($w_color,3,2)) //녹색 가져오기
- $b = hexdec(substr($w_color,5)); / /Get blue
- }
- else
- {
- return
- }
- //imagecolorallocate 팔레트 기반 이미지 채우기 background color
- //imagestring은 가로로 선을 그립니다. String
- //imagestring(소스 이미지, 글꼴 크기, 위치 X, 위치 Y, 텍스트, 색상)
- //매개변수($image, float $size, float $angle, int $x, int $y , int $color, string $fontfile, string $text)
- imagettftext($source_img,$w_font,0,$wx,$wy,imagecolorallocate($source_img,$r) ,$g,$b),$this- >fontfile,$w_text)
- //imagestring($source_img,$w_font,$wx,$wy,$w_text,imagecolorallocate($source_img,$r,$ g,$b))
- }
-
- //輸出到檔案或瀏覽器
- switch($source_info[2])
- {
- case 1 :
- imagegif($source_img, $target); //以GIF 格式將影像輸出至瀏覽器或檔案
- break;
- case 2 :
- imagejpeg($source_img, $target, $this->w_quality); //以JPEG 格式將影像輸出到瀏覽器或檔案
- break;
- case 3 :
- imagepng($source_img, $target); //以PNG 格式將圖片輸出到瀏覽器或檔案
- break;
- default :
- return;
- }
- if(isset($water_info))
- {
- unset($water_info); //銷毀
- }
- if(isset($water_img))
- {
- imagedestroy($water_img); //銷毀
- }
- unset($source_info);
- imagedestroy($source_img);
- return true; //gd庫必須存在,後綴為jpg|jpeg|gif|png,文件存在,imagecreatefromjpeg或者imagecreatefromgif存在
- function check($image)
- {
- return extension_loaded('gd') &&
- preg_match("/.(JPG|JPEG|PNG|GIF|jpg|jpeg|gif|png)/i", $image, $m) &&
- file_exists($image) &&
- function_exists('imagecreatefrom '.($m[1] == 'jpg' ? 'jpeg' : $m[1]));
- //imagecreatefromjpeg
- //imagecreatefromgif
- //imagecreatefrompng
- }
- }
-
- /**
- 縮圖
- 1.新建一個圖像資源通過imagecreatefromgif imagecreatefromjpeg imagecreatefrompng
- 2.imagecopyresampled 拷貝圖片,並調整大小
-
- 水印:圖片
- 2.加浮水印
- 圖片浮水印:imagecopymerge 把2張圖合併在一起
- 文字浮水印:imagettftext 寫入文字
-
-
- */
- error_reporting(0);
- $hostdir = dirname(__FILE__);
- $filesnames = scandir($hostdir.'/desktop' );
- $img = new image();
- foreach($filesnames as $name){
- if($name != '.' && $name != '..'){
- $imgPath = $hostdir.'/desktop/';
- $imgsize = getimagesize($imgPath.$name);
- $imgInfo = explode('.',$name);
- $imginfo2 = explode('_',$imgInfo[0]);
- if($imginfo2[count($imginfo2)-1] != 'small'){
- $img_small = $imgPath.$imgInfo[0] .'_small.'.$imgInfo[1];
- $img->thumb2($imgPath.$name,$img_small,'',$imgsize[0]/4,$imgsize[1]/4);
- }
- }
- }
-
-
- 複製程式碼
|
等比例, PHP