首页  >  文章  >  后端开发  >  不变形截图的PHP代码

不变形截图的PHP代码

WBOY
WBOY原创
2016-07-25 08:46:10851浏览
  1. function my_image_resize($src_file, $dst_file , $new_width , $new_height)
  2. {
  3. $src_img=imagecreatefromjpeg($src_file);
  4. $w=imagesx($src_img);
  5. $h=imagesy($src_img);
  6. $ratio_w=1.0 * $new_width / $w;
  7. $ratio_h=1.0 * $new_height / $h;
  8. $ratio=1.0;
  9. // 生成的图像的高宽比原来的都小,或都大 ,原则是 取大比例放大,取大比例缩小(缩小的比例就比较小了)
  10. if( ($ratio_w 1 && $ratio_h > 1))
  11. {
  12. if($ratio_w {
  13. $ratio = $ratio_h ; // 情况一,宽度的比例比高度方向的小,按照高度的比例标准来裁剪或放大
  14. }else {
  15. $ratio = $ratio_w ;
  16. }
  17. // 定义一个中间的临时图像,该图像的宽高比 正好满足目标要求
  18. $inter_w=(int)($new_width / $ratio);
  19. $inter_h=(int) ($new_height / $ratio);
  20. $inter_img=imagecreatetruecolor($inter_w , $inter_h);
  21. imagecopy($inter_img, $src_img, 0,0,0,0,$inter_w,$inter_h);
  22. // 生成一个以最大边长度为大小的是目标图像$ratio比例的临时图像
  23. // 定义一个新的图像
  24. $new_img=imagecreatetruecolor($new_width,$new_height);
  25. imagecopyresampled($new_img,$inter_img,0,0,0,0,$new_width,$new_height,$inter_w,$inter_h);
  26. //imagejpeg($new_img, $dst_file,100); // 存储图像
  27. }
  28. // end if 1
  29. // 2 目标图像 的一个边大于原图,一个边小于原图 ,先放大平普图像,然后裁剪
  30. //if( ($ratio_w 1) || ($ratio_w >1 && $ratio_h else
  31. {
  32. $ratio=$ratio_h>$ratio_w? $ratio_h : $ratio_w; //取比例大的那个值
  33. // 定义一个中间的大图像,该图像的高或宽和目标图像相等,然后对原图放大
  34. $inter_w=(int)($w * $ratio);
  35. $inter_h=(int) ($h * $ratio);
  36. $inter_img=imagecreatetruecolor($inter_w , $inter_h);
  37. //将原图缩放比例后裁剪
  38. imagecopyresampled($inter_img,$src_img,0,0,0,0,$inter_w,$inter_h,$w,$h);
  39. // 定义一个新的图像
  40. $new_img=imagecreatetruecolor($new_width,$new_height);
  41. imagecopy($new_img, $inter_img, 0,0,0,0,$new_width,$new_height);
  42. }
  43. imagejpeg($new_img, $dst_file,100); // 存储图像
  44. }
  45. $filename = "110.jpg"; //原图片的路径
  46. $fileto="120.jpg";//截图后保存的路径
  47. $new_w=300;//设定的宽
  48. $new_h=350; //设定的高
  49. my_image_resize($filename,$fileto,$new_w,$new_h);
  50. ?>
复制代码

不变形, PHP


声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn