확장자자유자재1 php - 이미지 리사이즈(크기변경) php 이미지 리사이즈 php에서 이미지 크기를 변경하는 건 빈번하게 사용되는 기술입니다. 보통 썸네일 이미지를 만들 때 많이 사용되는데요. 관련 소스들이 어중간한게 많아 새로 만들었습니다 :) function resize_image($file, $newfile, $w, $h) { list($width, $height) = getimagesize($file); if(strpos(strtolower($file), ".jpg")) $src = imagecreatefromjpeg($file); else if(strpos(strtolower($file), ".png")) $src = imagecreatefrompng($file); else if(strpos(strtolower($file), ".gif")) $s.. 2019. 9. 17. 이전 1 다음