Notice
Recent Posts
Recent Comments
Tags
- django 엑셀불러오기
- XSS방어
- javascript 유효성체크
- 하드 윈도우 복사
- 404에러페이지
- 강제이동
- XSS PHP
- 파일업로드 유효성체크
- javascript 바코드스캔
- jquery 바코드생성
- javascript 바코드 생성
- ViewData
- Mac Oracle
- jquery 바코드
- 타임피커
- 파일업로드 체크
- ASP.Net Core 404
- javascript redirection
- php 캐쉬제거
- asp.net Select
- asp.net core Select
- TempData
- 말줄임표시
- 바코드 생성하기
- 하드 마이그레이션
- SSD 복사
- 맥 오라클설치
- ViewBag
- asp.net dropdownlist
- 바코드 스캔하기
웹개발자의 기지개
[php] 이미지 리사이징 3 - 간단 예제 본문
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <? function wbbs_getImageSize($image_path,$width_max,$height_max){ $img_size=GetImageSize ("$image_path"); if ($img_size[0] > $width_max || $img_size[1] > $height_max) { $width = $width_max; $height = $img_size[1]*$width_max /$img_size[0]; if ($height > $height_max) { $height = $height_max; $width = $img_size[0]*$height_max /$img_size[1]; } }else{ $width = $img_size[0]; $height = $img_size[1]; } $img_size[width] = $width; $img_size[height] = $height; return $img_size; } ?> | cs |
1 2 3 4 5 6 7 8 9 10 | <? if (($filename1) && (strtoupper(substr($filename1,-3)) == "GIF" || strtoupper(substr($filename1,-3)) == "JPG" || strtoupper(substr($filename1,-3)) == "PNG")) { // 800 x 600 형태로 이미지 리사이징하기 $img_size = wbbs_getImageSize("../pds/board/".$filename1Val,800,600); ?> <img src="../pds/board/<?=$filename1Val?>" width="<?=$img_size[width]?>" height="<?=$img_size[height]?>" border=0 style="max-width:100%;height:auto;"> <? } ?> | cs |
'PHP' 카테고리의 다른 글
[php] xml 파싱 - simplexml_load_string 이용하기 (GET) (0) | 2020.06.14 |
---|---|
[php] 이름명 *로 변경하기 (0) | 2020.06.05 |
[php] 특정 배열요소 값을 순환식으로 교대로 얻기 (0) | 2020.05.15 |
[php] 배열내 요소들 중복제거하고 유니크하게 array_unique() (0) | 2020.04.21 |
[php] 배열요소중에서 특정값들만 삭제하기 (0) | 2020.04.21 |
Comments