이미지 처리용 소프트웨어 이미지 처리용 PHP 클래스 구현 코드

WBOY
풀어 주다: 2016-07-29 08:41:02
원래의
1070명이 탐색했습니다.

코드 복사 코드는 다음과 같습니다.


/**
* 작성자:yagas
* 이메일:yagas60@21cn.com
*/
클래스 이미지
{
/**클래스 보호 변수*/
protected $th_width = 100;
protected $th_height = 50;
protected $quality = 85; //사진 품질
protected $transparent = 50; //워터마크 투명도
protected $Background = "255,255,255";
/**
* 썸네일 파일 생성
* @param $src 원본 이미지 파일
* @param $dst 대상 파일
*/
공용 함수 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 크기 조정 비율, 백분율로 Bloom 부동 소수점 유형의 경우, 배열 유형의 지정된 크기로 크기 조정
* @param boolean $output 파일 출력 생성 여부
*/
공개 function scale($src, $dst=null, $zoom=1, $output=true)
{
if(!file_exists($src)) die('파일이 없습니다.')
if(!$zoom) die('확대/축소 정의 해제.');
$src_im = $this->IM($src)
$old_width = Imagesx($src_im)
if( is_float($zoom)) {
//백분율로 확대
$new_width = $old_width * $zoom
}
elseif(is_array($zoom)) {
//Clear The 확대/축소 크기
$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("콘텐츠 유형: image/jpeg")
imagejpeg($ resize_im, null, $this->quality);
else {
$new_file = 비어 있음($dst)
imagejpeg($resize_im , $new_file, $this->quality);
imagedestroy($im);
imagedestroy($nIm)
}
/**
* 이미지 자르기
* @param $src 원본 파일
* @param $dst 대상 파일
* @param $output 대상 파일 생성 여부
*/
공개 함수 Capture($src, $dst=null, $output=true) {
if(!file_exists($src)) die('파일이 존재하지 않습니다.')
$width = $this ->th_width ;
$height = $this->th_height;
$src_im = $this->IM($src)
$old_width = Imagesx($src_im); ($src_im);
$capture = imagecreatetruecolor($width, $height);
$rgb = 폭발(",", $this->배경)
$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; >imageresize($src_im, $old_width/$proportion);
$posx = 0
$posy = 0
}
else {
//이미지 썸네일링 시 이미지 중앙보다 작음
$posy = ($height-$old_height)/2; 🎜 >}
imagecopy($capture, $resize_im, $posx, $posy, 0, 0, Imagesx($resize_im), imagey($resize_im))
if(!$output) {
header("콘텐츠 유형: image/jpeg");
imagejpeg($capture, null, $this->quality)
}
else {
$new_file = 비어 있음($dst ) ? $src:$dst;
imagejpeg($capture, $new_file, $this->quality)
}
imagedestroy($src_im)
@imagedestroy($resize_im);
imagedestroy($capture);
}
/**
* 워터마크 이미지 쓰기
* @param $src 워터마크가 필요한 이미지
* @param $mark 워터마크 이미지
* @param $transparent 워터마크 투명도
*/
공용 함수 mark($src, $mark, $dst='', $output=true)
{
$mark_info = getimagesize($mark);
$src_info = getimagesize($src)
list($mw,$mh)
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 = 비어 있음($dst)? $src:$dst;
imagejpeg($im, $new_file, $this->quality)
🎜 >else
{
header('콘텐츠 유형: image/jpeg');
imagejpeg($im)
}
imagedestroy($im); $밈)
}
/**
* 파일을 통해 다양한 GD 객체 얻기
*/
보호된 함수 IM($file)
{
if(!file_exists($file)) die('파일이 존재하지 않습니다.');
$info = getimagesize($file);
switch($info['mime'])
{
case 'image/gif':
$mim = imagecreatefromgif($file);
휴식;
케이스 '이미지/png':
$mim = imagecreatefrompng($file);
imagealphablending($mim, false);
imagesavealpha($mim, true);
휴식;
케이스 'image/jpeg':
$mim = imagecreatefromjpeg($file);
휴식;
기본값:
die('파일 형식 오류.');
}
$mim을 반환합니다.
}
/**
* 이미지 크기 조정 처리
* @param 리소스 $src_im 이미지 GD 객체
* @param 정수 $width 이미지 너비
* @param 정수 $height 이미지 높이(그렇지 않은 경우) 높이를 설정하면 이미지 크기가 비례적으로 조정됩니다
* @return resuorce $im은 GD 객체를 반환합니다
*/
보호된 함수 imageresize($src_im, $width, $height=null) {
$old_width = Imagesx($src_im);
$old_height = 이미지($src_im);
$비율 = $old_width/$old_height;
$new_width = $width;
$new_height = is_null($height)? round($new_width / $proportion):$height;
//새로운 새로운 이미지 생성
$im = imagecreatetruecolor($new_width, $new_height);
$rgb = 폭발(",", $this->배경);
$white = imagecolorallocate($im, $rgb[0], $rgb[1], $rgb[2]);
imagefill($im, 0, 0, $white); $im을 돌려주세요;
}
/**
* 클래스 변수 할당
*/
공개 함수 __set($key, $value)
{
$this->$key = $value;
}
/**
* 클래스 변수 값 가져오기
*/
공개 함수 __get($key)
{
return $this->$key;
}
}
?>


以上就介绍了处曾件PHP는 处括了处码, 包括了处软件容, 希望对PHP教程兴趣多朋友有所帮助。

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!