>백엔드 개발 >PHP 튜토리얼 >PHP 이미지 업로드 클래스는 워터마크 날짜 폴더 생성 썸네일을 지원하고 여러 파일 업로드를 지원합니다.

PHP 이미지 업로드 클래스는 워터마크 날짜 폴더 생성 썸네일을 지원하고 여러 파일 업로드를 지원합니다.

WBOY
WBOY원래의
2016-07-25 08:46:22960검색
이미지 업로드, PHP
{Y}{m}{n}을 사용하여 현재 날짜를 변경할 수 있습니다
  1. set_dir(dirname(__FILE__).'/upload/','{y}/{m} '); //경로 저장, {y}{m}{d} 옵션 지원
  2. $up->set_thumb(100,80); //썸네일 크기 설정은 픽셀
  3. $up- >set_watermark(dirname(__FILE__).'/jblog/images/watermark.png',6,90); //워터마크 설정
  4. $fs = $up->execute() //실행 시작
  5. var_dump($fs); //테스트용 클래스 보기
  6. }
  7. ?>
  8. /////양식 보기---------
  9. test
  10. //다중 이미지 업로드 지원
  11. */
  12. class upload {
  13. var $dir; //첨부파일이 저장되는 물리적 디렉토리
  14. var $time; //파일 업로드 시간 맞춤
  15. var $allow_types; //첨부파일 유형 업로드 허용
  16. var $field; > var $maxsize; //최대 허용 파일 크기(KB)
  17. var $thumb_width; //썸네일 너비
  18. var $thumb_height; //썸네일 높이
  19. // 워터마크 이미지 주소
  20. var $watermark_pos; //워터마크 위치
  21. var $watermark_trans;//워터마크 투명도
  22. //Constructor
  23. //$types: 업로드할 수 있는 파일 형식, $ maxsize: 허용된 크기, $field: 업로드 제어 이름, $time: 사용자 정의 업로드 시간
  24. function upload($types = 'jpg|png', $maxsize = 1024, $field = 'attach', $time = '' ) {
  25. $this->allow_types =explore('|',$types)
  26. $this->maxsize = $maxsize * 1024; $this ->field = $field;
  27. $this->time = $time ? $time : time()
  28. }
  29. //파일이 저장되는 특정 디렉터리를 설정하고 생성합니다.
  30. //$basedir : 기본 디렉토리, 실제 경로여야 합니다
  31. //$filedir: 사용자 정의 하위 디렉토리, 사용 가능한 매개변수 {y}, {m}, {d}
  32. function set_dir($basedir,$filedir = '') {
  33. $dir = $basedir;
  34. !is_dir($dir) && @mkdir($dir,0777)
  35. if (!empty($filedir)) {
  36. $ filedir = str_replace(array( '{y}','{m}','{d}'),array(date('Y',$this->time),date('m',$this- >time),date ('d',$this->time)),strtolower($filedir));//string_replace를 사용하여 {y} {m} {d} 태그 교체
  37. $ dirs =explore('/',$ filedir);
  38. foreach ($dirs as $d) {
  39. !empty($d) && $dir .= $d.'/'
  40. !is_dir ($dir) && @mkdir($ dir,0777);
  41. }
  42. }
  43. $this->dir = $dir;
  44. }
  45. //그림 썸네일 설정, 썸네일이 아닌 경우 설정할 필요가 없습니다. 생성됨
  46. //$width: 썸네일 너비, $height: 썸네일 높이
  47. function set_thumb ($width = 0, $height = 0) {
  48. $this ->thumb_width = $width; $this->thumb_height = $height;
  49. }
  50. //그림 워터마크 설정, 워터마크가 생성되지 않으면 설정 필요 없음
  51. // $file: 워터마크 이미지, $pos: 워터마크 position, $trans: 워터마크 투명도
  52. function set_watermark ($file, $pos = 6, $trans = 80) {
  53. $this->watermark_file = $file
  54. $this->watermark_pos = $pos
  55. $this->watermark_trans = $trans
  56. }
  57. /*————————————————————————-
  58. 파일 업로드를 실행하고 업로드 성공이 포함된 파일 정보 배열을 반환합니다. 처리 후 실패.
  59. 그 중 name은 파일 이름입니다. 업로드에 실패한 경우에는 로컬 파일 이름입니다. 업로드가 실패하면 첨부 파일이 존재하지 않는 실제 경로입니다.
  60. 크기는 업로드에 실패하면
  61. 플래그가 존재하지 않는 것입니다. 1은 성공을 나타내고, -1은 파일 형식이 허용되지 않음을 나타내며, -2는 파일 크기가
  62. 을 초과함을 나타냅니다. —————— —————————————— ——–*/
  63. function excute() {
  64. $files = array(); //파일 정보 업로드 성공
  65. $field = $ this->field
  66. $keys = array_keys( $_FILES[$field]['name']);
  67. foreach ($keys as $key) {
  68. if (!$_FILES[$field ]['name'][$key]) 계속; 🎜>
  69. $fileext = $this->fileext($_FILES[$field]['name'][$key]); //파일 확장자 가져오기
  70. $filename = date('Ymdhis', $this->time).mt_rand(10,99).'.'.$fileext; //파일명 생성
  71. $filedir = $this- >dir; //첨부파일이 저장된 실제 디렉터리
  72. $filesize = $_FILES[$field]['size'][$key]; //파일 크기
  73. //파일 형식이 허용되지 않습니다
  74. if (!in_array($fileext,$this ->allow_types)) {
  75. $files[$key]['name'] = $_FILES[$field]['name'][$key]; $files[$key]['flag '] = -1;
  76. 계속;
  77. }
  78. //파일 크기 초과
  79. if ($filesize > $this-> ;maxsize) {
  80. $files[$ 키]['이름'] = $_FILES[$필드]['이름'][$key]
  81. $files[$key]['name'] = $filesize; ]['flag'] = -2;
  82. 계속;
  83. }
  84. $files[$key]['name'] = $filename ; 'dir'] = $filedir;
  85. $files[$key]['size'] = $filesize;
  86. //업로드한 파일을 저장하고 임시 파일을 삭제합니다.
  87. if (is_uploaded_file( $_FILES[$field]['tmp_name'][$key])) {
  88. move_uploaded_file($_FILES[$field]['tmp_name'][$key],$filedir .$filename)
  89. @ unlink($_FILES[$field]['tmp_name'][$key]);
  90. $files[$key]['flag'] = 1;
  91. //사진에 워터마크를 추가하고 여기의 데모는 jpg 및 png만 지원합니다(gif가 생성되면 프레임이 손실됩니다)
  92. if (in_array($fileext,array('jpg','png') )) {
  93. if ($this->thumb_width) {
  94. if ($this->create_thumb($filedir.$filename,$filedir.'thumb_'.$filename)) {
  95. $ 파일[$key][ 'thumb'] = 'thumb_'.$filename; //썸네일 파일 이름
  96. }
  97. }
  98. $this->create_watermark($filedir.$filename);
  99. }
  100. return $files;
  101. }
  102. //썸네일 생성, 동일한 확장자를 사용하여 썸네일 생성
  103. // $src_file: 소스 이미지 경로, $thumb_file: 썸네일 경로
  104. function create_thumb ($src_file,$thumb_file) {
  105. $t_width = $this->thumb_width;
  106. $t_height = $this-> Thumb_height; file_exists($src_file)) return false
  107. $src_info = getImageSize($src_file);
  108. //소스 이미지가 썸네일보다 작거나 같은 경우 소스 이미지를 다음과 같이 복사합니다. 작업이 필요 없는 썸네일
  109. if ($src_info[0] <= $t_width && $src_info[1] <= $t_height) {
  110. if (!copy($src_file ,$thumb_file) ) {
  111. return false
  112. }
  113. return true
  114. }
  115. //썸네일 크기를 비례적으로 계산
  116. if (($src_info[0 ]-$t_width) > ; ($src_info[1]-$t_height)) {
  117. $t_height = ($t_width / $src_info[0]) * $src_info[1]
  118. } else {
  119. $t_width = ($ t_height / $src_info[1]) * $src_info[0]
  120. }
  121. //파일 확장자 가져오기
  122. $fileext = $this->fileext($src_file)
  123. switch ($fileext) {
  124. case 'jpg' :
  125. $src_img = ImageCreateFromJPEG($src_file);
  126. 케이스 'png' :
  127. $src_img = ImageCreateFromPNG($src_file)
  128. 케이스 'gif' :
  129. $src_img = ImageCreateFromGIF ($src_file); break;
  130. //트루 컬러 썸네일 이미지 생성
  131. $thumb_img = @ImageCreateTrueColor($t_width,$t_height) / 이미지 /ImageCopyResampled 함수로 복사하면 부드러움이 더 좋고 우선순위가 부여됩니다.
  132. if (function_exists('imagecopyresampled')) {
  133. @ImageCopyResampled($thumb_img,$src_img,0,0,0,0,$t_width,$ t_height,$src_info[0],$src_info[1]);
  134. } else {
  135. @ImageCopyReized($thumb_img,$src_img,0,0,0,0,$t_width,$t_height,$src_info[ 0],$src_info[1])
  136. }
  137. //썸네일 생성
  138. switch ($fileext) {
  139. case 'jpg' :
  140. ImageJPEG($thumb_img, $ Thumb_file);
  141. Case 'gif' :
  142. ImageGIF($thumb_img,$thumb_file); break;
  143. ImagePNG($thumb_img,$thumb_file); 🎜> }
  144. //임시 이미지 삭제
  145. @ImageDestroy($src_img);
  146. @ImageDestroy($thumb_img)
  147. return true;
  148. //사진에 워터마크 추가
  149. //$file : 워터마크를 추가할 파일
  150. function create_watermark ($file) {
  151. //파일이 없으면 반환
  152. if (!file_exists($this->watermark_file) || !file_exists($file)) return
  153. if (!function_exists('getImageSize')) return
  154. //확인 GD 지원되는 파일 형식
  155. $gd_allow_types = array();
  156. if (function_exists('ImageCreateFromGIF')) $gd_allow_types['image/gif'] = 'ImageCreateFromGIF'
  157. if (function_exists('ImageCreateFromPNG') )) $gd_allow_types['image/png'] = 'ImageCreateFromPNG';
  158. if (function_exists('ImageCreateFromJPEG')) $gd_allow_types['image/jpeg'] = 'ImageCreateFromJPEG'
  159. // 파일 정보 가져오기
  160. $fileinfo = getImageSize($file)
  161. $wminfo = getImageSize($this->watermark_file)
  162. if ($fileinfo[0] < $wminfo[0 ] || $fileinfo[1] < $wminfo[1]) return
  163. if (array_key_exists($fileinfo['mime'],$gd_allow_types)) {
  164. if (array_key_exists($wminfo) ['mime'],$gd_allow_types)) {
  165. //파일에서 이미지 생성
  166. $temp = $gd_allow_types[$fileinfo['mime']]($file)
  167. $temp_wm = $gd_allow_types[$wminfo['mime']]($this->watermark_file);
  168. //워터마크 위치
  169. 스위치($this->watermark_pos) {
  170. 사례 1: //왼쪽 상단
  171. $dst_x = 0; $dst_y = 0; break;
  172. 사례 2 : //상단 중앙
  173. $dst_x = ($fileinfo[0] - $wminfo[0])/2 ; $dst_y = 0;
  174. 케이스 3 : //오른쪽 위
  175. $dst_x = $dst_y = 0;
  176. 케이스 4 : //왼쪽
  177. $dst_x = 0; $dst_y = $fileinfo[1];
  178. 사례 5 : // 하단 중앙
  179. $dst_x = ($fileinfo[0] - $wminfo[0]) / 2; = $fileinfo[1]; 중단;
  180. 사례 6: //오른쪽 하단
  181. $dst_x = $fileinfo[0]-$wminfo[0]; ]; 중단;
  182. 기본값 : //Random
  183. $dst_x = mt_rand(0,$fileinfo[0]-$wminfo[0]) $dst_y = mt_rand(0,$fileinfo[1]- $wminfo [1]) }
  184. if (function_exists('ImageAlphaBlending')) ImageAlphaBlending($temp_wm,True); //이미지 블렌딩 모드 설정
  185. if (function_exists(' ImageSaveAlpha') ) ImageSaveAlpha($temp_wm,True); //전체 알파 채널 정보 저장
  186. //이미지에 워터마크 추가
  187. if (function_exists('imageCopyMerge')) {
  188. ImageCopyMerge( $temp ,$temp_wm,$dst_x,$dst_y,0,0,$wminfo[0],$wminfo[1],$this->watermark_trans)
  189. }else {
  190. ImageCopyMerge($temp,$temp_wm,$dst_x,$dst_y,0,0,$wminfo[0],$wminfo[1])
  191. }
  192. //저장 image
  193. 스위치($fileinfo['mime']) {
  194. 케이스 'image/jpeg' :
  195. @imageJPEG($temp,$file)
  196. break
  197. 케이스 'image/ png ' :
  198. @imagePNG($temp,$file);
  199. break
  200. case 'image/gif' :
  201. @imageGIF($temp,$file); 🎜 > }
  202. //제로타임 이미지 삭제
  203. @imageDestroy($temp)
  204. @imageDestroy($temp_wm)
  205. }
  206. }
  207. }
  208. / /파일 확장자 가져오기
  209. function fileext($filename) {
  210. return strtolower(substr(strrchr($filename,'.'),1,10))
  211. }
  212. }
  213. ?>
코드 복사

이 주제는 Xiaobei가 2015-11-18 08:23에 이동했습니다
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.