썸네일 생성시 Sharpen 적용하기 - PHP 5.1 이상
참고
http://kr2.php.net/manual/en/function.imageconvolution.php
http://kr2.php.net/manual/en/function.imageconvolution.php#58187
http://kr2.php.net/manual/en/function.imageconvolution.php#56145
sir에서 제공하는 갤러리 스킨의 썸네일 생성 부분중에
굵은글씨 부분을 추가해 주세요
php 5.1 이상에서만 됩니다.
http://kr2.php.net/manual/en/function.imageconvolution.php
http://kr2.php.net/manual/en/function.imageconvolution.php#58187
http://kr2.php.net/manual/en/function.imageconvolution.php#56145
sir에서 제공하는 갤러리 스킨의 썸네일 생성 부분중에
if ($height < $h){
$dst = imagecreatetruecolor($w, $height);
}else{
$dst = imagecreatetruecolor($w, $h);
}
imagecopyresampled($dst, $src, 0, 0, 0, 0, $w, $height, $size[0], $size[1]);
//image sharpen
$matrix = array(
array( -1, -1, -1 ),
array( -1, 16, -1 ),
array( -1, -1, -1 )
);
$divisor = 8;
$offset = 0;
imageconvolution($dst, $matrix, $divisor, $offset);
$dst = imagecreatetruecolor($w, $height);
}else{
$dst = imagecreatetruecolor($w, $h);
}
imagecopyresampled($dst, $src, 0, 0, 0, 0, $w, $height, $size[0], $size[1]);
//image sharpen
$matrix = array(
array( -1, -1, -1 ),
array( -1, 16, -1 ),
array( -1, -1, -1 )
);
$divisor = 8;
$offset = 0;
imageconvolution($dst, $matrix, $divisor, $offset);
굵은글씨 부분을 추가해 주세요
php 5.1 이상에서만 됩니다.
[이 게시물은 관리자님에 의해 2011-10-31 17:12:10 PHP & HTML에서 이동 됨]
첨부파일
|
댓글을 작성하시려면 로그인이 필요합니다.
프로그램
태그 필터 (최대 3개)
전체
개발자
소스
기타
mysql
팁자료실
javascript
php
linux
flash
정규표현식
jquery
node.js
mobile
웹서버
os
프로그램
강좌
썸네일
이미지관련
도로명주소
그누보드5
기획자
견적서
계약서
기획서
마케팅
제안서
seo
통계
서식
통계자료
퍼블리셔
html
css
반응형
웹접근성
퍼블리싱
표준화
반응형웹
홈페이지기초
부트스트랩
angularjs
포럼
스크린리더
센스리더
개발자톡
개발자팁
퍼블리셔톡
퍼블리셔팁
기획자톡
기획자팁
프로그램강좌
퍼블리싱강좌
댓글 3개
드림위버 버리고 APTANA 쓴지 몇달 됐네요 ㅎ
첨 알았네요..
matrix만 잘짜면 다양하 표현도 가능하죠 ㅋㅋ