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 | 31 |
Tags
- mariadb
- install
- Eclipse
- yum
- replace
- 문자열자르기
- smarty
- docker
- 천단위
- RabbitMQ
- centos
- MySQL
- Oracle
- JavaScript
- jQuery
- 부모창
- TextBox
- 일괄변경
- SVN
- Postfix
- 확장자
- 한글 깨짐
- i18n
- ubuntu
- Python
- Selectbox
- TPL
- php
- random
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 = ''; }
반응형