php上传图片并压缩的实现方法

本文实例讲解了php上传图片并压缩的实现方法,之前一篇《PHP实现图片上传并压缩》已经为大家进行了简单介绍,此次实现上传图片然后按照比例缩略图,指定缩略图的最大高度或者最大宽度,具体内容如下。

实现代码:

  1. <?php
  2. function _UPLOADPIC($upfile, $maxsize, $updir, $newname = 'date') {
  3. if ($newname == 'date')
  4. $newname = date ( "Ymdhis" ); //使用日期做文件名
  5. $name = $upfile ["name"];
  6. $type = $upfile ["type"];
  7. $size = $upfile ["size"];
  8. $tmp_name = $upfile ["tmp_name"];
  9. switch ($type) {
  10. case 'image/pjpeg' :
  11. case 'image/jpeg' :
  12. $extend = ".jpg";
  13. break;
  14. case 'image/gif' :
  15. $extend = ".gif";
  16. break;
  17. case 'image/png' :
  18. $extend = ".png";
  19. break;
  20. }
  21. if (emptyempty ( $extend )) {
  22. echo ( "警告!只能上传图片类型:GIF JPG PNG" );
  23. exit ();
  24. }
  25. if ($size > $maxsize) {
  26. $maxpr = $maxsize / 1000;
  27. echo ( "警告!上传图片大小不能超过" . $maxpr . "K!" );
  28. exit ();
  29. }
  30. if (move_uploaded_file ( $tmp_name, $updir . $newname . $extend )) {
  31. return $updir . $newname . $extend;
  32. }
  33. }
  34. function show_pic_scal($width, $height, $picpath) {
  35. $imginfo = GetImageSize ( $picpath );
  36. $imgw = $imginfo [0];
  37. $imgh = $imginfo [1];
  38. $ra = number_format ( ($imgw / $imgh), 1 ); //宽高比
  39. $ra2 = number_format ( ($imgh / $imgw), 1 ); //高宽比
  40. if ($imgw > $width or $imgh > $height) {
  41. if ($imgw > $imgh) {
  42. $newWidth = $width;
  43. $newHeight = round ( $newWidth / $ra );
  44. } elseif ($imgw < $imgh) {
  45. $newHeight = $height;
  46. $newWidth = round ( $newHeight / $ra2 );
  47. } else {
  48. $newWidth = $width;
  49. $newHeight = round ( $newWidth / $ra );
  50. }
  51. } else {
  52. $newHeight = $imgh;
  53. $newWidth = $imgw;
  54. }
  55. $newsize [0] = $newWidth;
  56. $newsize [1] = $newHeight;
  57. return $newsize;
  58. }
  59. function getImageInfo($src)
  60. {
  61. return getimagesize($src);
  62. }
  63. /**
  64. * 创建图片,返回资源类型
  65. * @param string $src 图片路径
  66. * @return resource $im 返回资源类型
  67. * **/
  68. function create($src)
  69. {
  70. $info=getImageInfo($src);
  71. switch ($info[2])
  72. {
  73. case 1:
  74. $im=imagecreatefromgif($src);
  75. break;
  76. case 2:
  77. $im=imagecreatefromjpeg($src);
  78. break;
  79. case 3:
  80. $im=imagecreatefrompng($src);
  81. break;
  82. }
  83. return $im;
  84. }
  85. /**
  86. * 缩略图主函数
  87. * @param string $src 图片路径
  88. * @param int $w 缩略图宽度
  89. * @param int $h 缩略图高度
  90. * @return mixed 返回缩略图路径
  91. * **/
  92. function resize($src,$w,$h)
  93. {
  94. $temp=pathinfo($src);
  95. $name=$temp["basename"];//文件名
  96. $dir=$temp["dirname"];//文件所在的文件夹
  97. $extension=$temp["extension"];//文件扩展名
  98. $savepath="{$dir}/{$name}";//缩略图保存路径,新的文件名为*.thumb.jpg
  99. //获取图片的基本信息
  100. $info=getImageInfo($src);
  101. $width=$info[0];//获取图片宽度
  102. $height=$info[1];//获取图片高度
  103. $per1=round($width/$height,2);//计算原图长宽比
  104. $per2=round($w/$h,2);//计算缩略图长宽比
  105. //计算缩放比例
  106. if($per1>$per2||$per1==$per2)
  107. {
  108. //原图长宽比大于或者等于缩略图长宽比,则按照宽度优先
  109. $per=$w/$width;
  110. }
  111. if($per1<$per2)
  112. {
  113. //原图长宽比小于缩略图长宽比,则按照高度优先
  114. $per=$h/$height;
  115. }
  116. $temp_w=intval($width*$per);//计算原图缩放后的宽度
  117. $temp_h=intval($height*$per);//计算原图缩放后的高度
  118. $temp_img=imagecreatetruecolor($temp_w,$temp_h);//创建画布
  119. $im=create($src);
  120. imagecopyresampled($temp_img,$im,0,0,0,0,$temp_w,$temp_h,$width,$height);
  121. if($per1>$per2)
  122. {
  123. imagejpeg($temp_img,$savepath, 100);
  124. imagedestroy($im);
  125. return addBg($savepath,$w,$h,"w");
  126. //宽度优先,在缩放之后高度不足的情况下补上背景
  127. }
  128. if($per1==$per2)
  129. {
  130. imagejpeg($temp_img,$savepath, 100);
  131. imagedestroy($im);
  132. return $savepath;
  133. //等比缩放
  134. }
  135. if($per1<$per2)
  136. {
  137. imagejpeg($temp_img,$savepath, 100);
  138. imagedestroy($im);
  139. return addBg($savepath,$w,$h,"h");
  140. //高度优先,在缩放之后宽度不足的情况下补上背景
  141. }
  142. }
  143. /**
  144. * 添加背景
  145. * @param string $src 图片路径
  146. * @param int $w 背景图像宽度
  147. * @param int $h 背景图像高度
  148. * @param String $first 决定图像最终位置的,w 宽度优先 h 高度优先 wh:等比
  149. * @return 返回加上背景的图片
  150. * **/
  151. function addBg($src,$w,$h,$fisrt="w")
  152. {
  153. $bg=imagecreatetruecolor($w,$h);
  154. $white = imagecolorallocate($bg,255,255,255);
  155. imagefill($bg,0,0,$white);//填充背景
  156. //获取目标图片信息
  157. $info=getImageInfo($src);
  158. $width=$info[0];//目标图片宽度
  159. $height=$info[1];//目标图片高度
  160. $img=create($src);
  161. if($fisrt=="wh")
  162. {
  163. //等比缩放
  164. return $src;
  165. }
  166. else
  167. {
  168. if($fisrt=="w")
  169. {
  170. $x=0;
  171. $y=($h-$height)/2;//垂直居中
  172. }
  173. if($fisrt=="h")
  174. {
  175. $x=($w-$width)/2;//水平居中
  176. $y=0;
  177. }
  178. imagecopymerge($bg,$img,$x,$y,0,0,$width,$height,100);
  179. imagejpeg($bg,$src,100);
  180. imagedestroy($bg);
  181. imagedestroy($img);
  182. return $src;
  183. }
  184. }
  185. ?>

使用方法:

$filename=(_UPLOADPIC($_FILES["upload"],$maxsize,$updir,$newname='date'));

$show_pic_scal=show_pic_scal(230, 230, $filename);

resize($filename,$show_pic_scal[0],$show_pic_scal[1]);