Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 문자열자르기
- Selectbox
- random
- SVN
- i18n
- 부모창
- install
- TextBox
- 일괄변경
- replace
- php
- MySQL
- 천단위
- centos
- Oracle
- RabbitMQ
- Postfix
- ubuntu
- 확장자
- TPL
- 한글 깨짐
- Eclipse
- docker
- jQuery
- smarty
- mariadb
- JavaScript
- yum
- Python
Archives
- Today
- Total
wilson's story
이미지 사이즈 수정하기 본문
반응형
width 값을 max값을 600px으로 하고, width값에 맞춰서 height 값을 유동적으로 변경 되도록 한다.
if ($content[file_name]>0) { $arr_filesize = getimagesize("폴더/파일이름"); //실제 저장된 경로와 파일명 $width = $arr_filesize[0]; $height = $arr_filesize[1]; if ($arr_filesize[0]>600) $width = "600"; //if ($arr_filesize[1]>600) $height = "600"; $str_filename = ''; }
반응형