php 이미지 사이즈 조절 > 질문답변

본문 바로가기
사이트 내 전체검색

질문답변

php 이미지 사이즈 조절

페이지 정보

profile_image
작성자 미친새
댓글 0건 조회 15,839회 작성일 20-02-21 11:23

본문

function img_resize_only($path, $img, $maxwidth, $maxheight) {
if($img) {
// $img는 이미지의 경로(예:./images/phplove.gif)
$imgsize = getimagesize($path.$img);
if($imgsize[0]>$maxwidth || $imgsize[1]>$maxheight) {
// 가로길이가 가로limit값보다 크거나 세로길이가 세로limit보다 클경우
$sumw = (100*$maxheight)/$imgsize[1];
$sumh = (100*$maxwidth)/$imgsize[0];
if($sumw < $sumh) {
// 가로가 세로보다 클경우
$img_width = ceil(($imgsize[0]*$sumw)/100);
$img_height = $maxheight;
} else {
// 세로가 가로보다 클경우
$img_height = ceil(($imgsize[1]*$sumh)/100);
$img_width = $maxwidth;
}
} else {
// limit보다 크지 않는 경우는 원본 사이즈 그대로.....
$img_width = $imgsize[0];
$img_height = $imgsize[1];
}

$imgsize[0] = $img_width;
$imgsize[1] = $img_height;
} else {
$imgsize[0] = $maxwidth;
$imgsize[1] = $maxheight;
}
return $imgsize;
}

댓글목록

등록된 댓글이 없습니다.

회원로그인

회원가입

사이트 정보

회사명 : 회사명 / 대표 : 대표자명
주소 : OO도 OO시 OO구 OO동 123-45
사업자 등록번호 : 123-45-67890
전화 : 02-123-4567 팩스 : 02-123-4568
통신판매업신고번호 : 제 OO구 - 123호
개인정보관리책임자 : 정보책임자명

공지사항

  • 게시물이 없습니다.

접속자집계

오늘
537
어제
1,656
최대
5,296
전체
1,474,370
Copyright © 소유하신 도메인. All rights reserved.