PHP / GD – 裁剪和调整图像大小

前端之家收集整理的这篇文章主要介绍了PHP / GD – 裁剪和调整图像大小前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我编写了一个函数,将图像裁剪为给定的宽高比,最后调整大小并将其输出为JPG:
  1. <?PHP
  2.  
  3. function Image($image,$crop = null,$size = null)
  4. {
  5. $image = ImageCreateFromString(file_get_contents($image));
  6.  
  7. if (is_resource($image) === true)
  8. {
  9. $x = 0;
  10. $y = 0;
  11. $width = imagesx($image);
  12. $height = imagesy($image);
  13.  
  14. /*
  15. CROP (Aspect Ratio) Section
  16. */
  17.  
  18. if (is_null($crop) === true)
  19. {
  20. $crop = array($width,$height);
  21. }
  22.  
  23. else
  24. {
  25. $crop = array_filter(explode(':',$crop));
  26.  
  27. if (empty($crop) === true)
  28. {
  29. $crop = array($width,$height);
  30. }
  31.  
  32. else
  33. {
  34. if ((empty($crop[0]) === true) || (is_numeric($crop[0]) === false))
  35. {
  36. $crop[0] = $crop[1];
  37. }
  38.  
  39. else if ((empty($crop[1]) === true) || (is_numeric($crop[1]) === false))
  40. {
  41. $crop[1] = $crop[0];
  42. }
  43. }
  44.  
  45. $ratio = array
  46. (
  47. 0 => $width / $height,1 => $crop[0] / $crop[1],);
  48.  
  49. if ($ratio[0] > $ratio[1])
  50. {
  51. $width = $height * $ratio[1];
  52. $x = (imagesx($image) - $width) / 2;
  53. }
  54.  
  55. else if ($ratio[0] < $ratio[1])
  56. {
  57. $height = $width / $ratio[1];
  58. $y = (imagesy($image) - $height) / 2;
  59. }
  60.  
  61. /*
  62. How can I skip (join) this operation
  63. with the one in the Resize Section?
  64. */
  65.  
  66. $result = ImageCreateTrueColor($width,$height);
  67.  
  68. if (is_resource($result) === true)
  69. {
  70. ImageSaveAlpha($result,true);
  71. ImageAlphaBlending($result,false);
  72. ImageFill($result,ImageColorAllocateAlpha($result,255,127));
  73.  
  74. ImageCopyResampled($result,$image,$x,$y,$width,$height,$height);
  75.  
  76. $image = $result;
  77. }
  78. }
  79.  
  80. /*
  81. Resize Section
  82. */
  83.  
  84. if (is_null($size) === true)
  85. {
  86. $size = array(imagesx($image),imagesy($image));
  87. }
  88.  
  89. else
  90. {
  91. $size = array_filter(explode('x',$size));
  92.  
  93. if (empty($size) === true)
  94. {
  95. $size = array(imagesx($image),imagesy($image));
  96. }
  97.  
  98. else
  99. {
  100. if ((empty($size[0]) === true) || (is_numeric($size[0]) === false))
  101. {
  102. $size[0] = round($size[1] * imagesx($image) / imagesy($image));
  103. }
  104.  
  105. else if ((empty($size[1]) === true) || (is_numeric($size[1]) === false))
  106. {
  107. $size[1] = round($size[0] * imagesy($image) / imagesx($image));
  108. }
  109. }
  110. }
  111.  
  112. $result = ImageCreateTrueColor($size[0],$size[1]);
  113.  
  114. if (is_resource($result) === true)
  115. {
  116. ImageSaveAlpha($result,true);
  117. ImageAlphaBlending($result,true);
  118. ImageFill($result,ImageColorAllocate($result,255));
  119. ImageCopyResampled($result,$size[0],$size[1],imagesx($image),imagesy($image));
  120.  
  121. header('Content-Type: image/jpeg');
  122.  
  123. ImageInterlace($result,true);
  124. ImageJPEG($result,null,90);
  125. }
  126. }
  127.  
  128. return false;
  129. }
  130.  
  131. ?>

功能按预期工作,但我正在创建一个非必需的GD图像资源,我该如何解决它?我试过加入两个电话,但我必须做一些错误的计算.

  1. <?PHP
  2.  
  3. /*
  4. Usage Examples
  5. */
  6.  
  7. Image('http://upload.wikimedia.org/wikipedia/commons/4/47/PNG_transparency_demonstration_1.png','1:1','600x');
  8. Image('http://upload.wikimedia.org/wikipedia/commons/4/47/PNG_transparency_demonstration_1.png','2:1','2:','250x300');
  9.  
  10. ?>

非常感谢任何帮助,谢谢.

您必须修改调整大小代码,而不是基于要开始的裁剪图像.由于您希望一次性进行裁剪和调整大小,因此您需要单独计算它.
  1. <?PHP
  2. function Image($image,$crop = ':',$size = null) {
  3.  
  4. $image = ImageCreateFromString(file_get_contents($image));
  5.  
  6. if (is_resource($image)) {
  7.  
  8. $x = 0;
  9. $y = 0;
  10. $width = imagesx($image);
  11. $height = imagesy($image);
  12.  
  13. // CROP (Aspect Ratio) Section
  14. $crop = array_filter(explode(':',$crop));
  15.  
  16. if (empty($crop)) {
  17.  
  18. $crop = [$width,$height];
  19.  
  20. } else {
  21.  
  22. $crop[0] = $crop[0] ?: $crop[1];
  23. $crop[1] = $crop[1] ?: $crop[0];
  24.  
  25. }
  26.  
  27. $ratio = [$width / $height,$crop[0] / $crop[1]];
  28.  
  29. if ($ratio[0] > $ratio[1]) {
  30.  
  31. $width = $height * $ratio[1];
  32. $x = (imagesx($image) - $width) / 2;
  33.  
  34. } else {
  35.  
  36. $height = $width / $ratio[1];
  37. $y = (imagesy($image) - $height) / 2;
  38.  
  39. }
  40.  
  41.  
  42. // Resize Section
  43. if (is_null($size)) {
  44.  
  45. $size = [$width,$height];
  46.  
  47. } else {
  48.  
  49. $size = array_filter(explode('x',$size));
  50.  
  51. if (empty($size)) {
  52.  
  53. $size = [imagesx($image),imagesy($image)];
  54.  
  55. } else {
  56.  
  57. $size[0] = $size[0] ?: round($size[1] * $width / $height);
  58. $size[1] = $size[1] ?: round($size[0] * $height / $width);
  59.  
  60. }
  61. }
  62.  
  63. $result = ImageCreateTrueColor($size[0],$size[1]);
  64.  
  65. if (is_resource($result)) {
  66.  
  67. ImageSaveAlpha($result,$height);
  68.  
  69. ImageInterlace($result,90);
  70.  
  71. }
  72. }
  73.  
  74. return false;
  75. }
  76.  
  77. header('Content-Type: image/jpeg');
  78. Image('http://upload.wikimedia.org/wikipedia/commons/4/47/PNG_transparency_demonstration_1.png','600x');
  79.  
  80. ?>

猜你在找的PHP相关文章