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
- 주식 청약
- codeigniter
- 오라클
- 공모주
- JavaScript
- 공모주 청약 일정
- Stock ipo
- MYSQL
- css
- 리눅스
- 6월 공모주 청약 일정
- html
- 자바스크립트
- jquery
- 맥
- Eclipse
- php
- IPO
- 자바
- 주식 청약 일정
- SQL
- 코드이그나이터
- Oracle
- java
- Stock
- 7월 공모주 청약 일정
- 제이쿼리
- linux
- 공모주 청약
- 주식
Archives
- Today
- Total
개발자의 끄적끄적
[php] php image resize example / php 이미지 리사이즈 예제 함수 [링크] 본문
728x90
반응형
[php] php image resize example / php 이미지 리사이즈 예제 함수 [링크]
php 에서
이미지 업로드를 다루다 보면
썸네일 용으로 축소해서 업로드 해야하는 경우가 있습니다!
그럴때 유용하게 사용할 수 있는 함수를 찾아 공유해 보려고 합니다!
아래 출처에서 퍼와서 비율을 입력받아 축소하도록 약간 변경한 내용입니다!
function img_resize($file, $newfile, $rate) {
list($width, $height) = getimagesize($file);
$w = $width*($rate/100);
$h = $height*($rate/100);
if(strpos(strtolower($file), ".jpg"))
$src = imagecreatefromjpeg($file);
else if(strpos(strtolower($file), ".png"))
$src = imagecreatefrompng($file);
else if(strpos(strtolower($file), ".gif"))
$src = imagecreatefromgif($file);
$dst = imagecreatetruecolor($w, $h);
imagecopyresampled($dst, $src, 0, 0, 0, 0, $w, $h, $width, $height);
if(strpos(strtolower($newfile), ".jpg"))
imagejpeg($dst, $newfile);
else if(strpos(strtolower($newfile), ".png"))
imagepng($dst, $newfile);
else if(strpos(strtolower($newfile), ".gif"))
imagegif($dst, $newfile);
return "OK";
}
위 내용 보시면 아시겠지만,
업로드된 파일 경로, 새로 저장할 파일 경로, 비율
이 3가지를 전달하면 해당 경로에 비율에 맞체 축소되어 저장되도록 하는 내용입니다!
예제는 아래와 같습니다!
img_resize("data/image001.jpg", "data/thumb_image001.jpg", 20);
위 내용은 파일을 20프로로 축소한 썸네일로 만드는 내용입니다!
참고들 하세요!
출처 - php 이미지 리사이즈 : https://itadventure.tistory.com/124
반응형
'개발 > php' 카테고리의 다른 글
[php/function] php html 특수문자 변환 방법 / php htmlspecialchars_decode example (0) | 2023.07.30 |
---|---|
[php/function] php iconv 한글변환 방법 / php utf-8 to euc-kr example (0) | 2023.07.29 |
[php/composer] google api client library 설치방법 (0) | 2023.07.20 |
[php/codeigniter4] php 8.2 & codeigniter 4 Deprecated: Creation of dynamic property 에러 해결방법 (0) | 2023.07.19 |
[php] post_max_size 최대값과 주의사항 (0) | 2023.07.15 |
Comments