메뉴 건너뛰기

프로그램언어

조회 수 1629 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
함수를 호출할 때 $file_src로 지정되어있는 이미지 파일 경로를 넣어주시면 됩니다.

$newsize=imgresize("파일경로");

이렇게 사용하시면 newsize[0] 에 가로길이가, newsize[1]에 세로길이가 반환되겠죠?
====================================================================
<?
function imgresize($file_src) {
$size = getimagesize("$file_src");
$width = $size[0];
$height = $size[1];
$limit_h = 422;
$limit_w = 563;
$percentage_h = $height/$limit_h;
$percentage_w = $width/$limit_w;

if($height > $limit_h || $width > $limit_w) {

if(($height > $limit_h && $width > $limit_w && $percentage_w > $percentage_h) || ($height < $limit_h && $width > $limit_w))
{$percentage = $percentage_w;}

elseif(($height >= $limit_h && $width >= $limit_w && $percentage_w < $percentage_h) || ($height >= $limit_h && $width < $limit_w))
{$percentage = $percentage_h;}

} else {$percentage = 1;}

$resize_h = $height/$percentage;
$resize_w = $width/$percentage;
$newsize = array("$resize_w", "$resize_h");
return $newsize;
}
?>



List of Articles
번호 제목 날짜 조회 수
300 지엠 웹에디터 v1.1 (저작권표시없음)| file 2017.03.06 17109
299 주차 , 요일, 해당주의 시작일, 해당주의 종료일 date() 2021.07.08 432
298 주간단위 시작일에서 종료일을 셀렉트박스로 만들기. file 2019.04.29 1331
297 주간날짜 뽑아오기 2014.02.27 26731
296 조건문의 함수실행 여부 if ( 0 && ... ) 2021.03.26 227
295 정규표현식 매치를 수행 (preg_match) 2016.12.23 20050
294 정규표현식 검사 도구 (ereg, eregi) 2016.12.23 18395
293 정규표현식 2021.03.26 311
292 정규식 2017.04.13 17599
291 정규 표현식 검색과 치환 (preg_replace) 2016.12.23 19012
290 정규 표현 / 전화번호 / 이메일 2019.01.16 1206
289 접속 IP 검사 2015.04.14 21871
288 전화번호에 하이픈(-) 넣기 2015.04.14 26622
287 잡다한 php 2017.03.06 18502
286 자바스크립트 이스케이프 문자열을 PHP로 디코딩 하기 2018.10.27 3259
285 자릿수만큼 앞에 0 붙이기 2017.03.07 19026
284 자동으로 다른 페이지로 넘어가는 함수 2019.01.08 1256
283 이스케이프 함수 (htmlentities) 2016.12.23 18375
282 이미지 워터마크 구현 2014.03.26 19667
» 이미지 사이즈 비율로 조정하기 2019.01.08 1629
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved