반응형
function resize_img($imgPath,$savePath,$fName,$limitWidth) {
if(@file_exists($imgPath)) {
$fileSize = getimagesize($imgPath);
$fileSize_width = $fileSize[0];
$fileSize_height = $fileSize[1];
$exe = get_exe($imgPath);
echo $fileSize_width;
if($fileSize_width > $limitWidth) {
getThumb($savePath,$fName,"",0,$fileSize_width,$fileSize_height,$exe,$limitWidth,0,"ratio");
}
}
}
if(@file_exists($imgPath)) {
$fileSize = getimagesize($imgPath);
$fileSize_width = $fileSize[0];
$fileSize_height = $fileSize[1];
$exe = get_exe($imgPath);
echo $fileSize_width;
if($fileSize_width > $limitWidth) {
getThumb($savePath,$fName,"",0,$fileSize_width,$fileSize_height,$exe,$limitWidth,0,"ratio");
}
}
}
반응형
'Web > PHP' 카테고리의 다른 글
PHP 4.x 버전에서 $_GET $_POST 생략하기 (0) | 2009.12.01 |
---|---|
파일관련 함수 (0) | 2009.11.27 |
디렉토리의 파일 읽어 콘트롤 (0) | 2009.11.23 |
이미지 사이즈 구하기 (0) | 2009.11.16 |
메일보내기 소스 (0) | 2009.11.12 |