当前位置:Gxlcms > PHP教程 > php生成缩略图的代码(兼容性好)

php生成缩略图的代码(兼容性好)

时间:2021-07-01 10:21:17 帮助过:26人阅读

PHP生成缩略图的代码很多,不过能完全兼容gd1.6和gd2.x,并能保证缩图清晰性的代码几乎没有,以下代码可以实现较好的兼容性。 分享出来,供大家学习参考。

  1. function ImageResize($srcFile,$toW,$toH,$toFile="")
  2. {
  3. if($toFile==""){ $toFile = $srcFile; }
  4. $info = "";
  5. $data = GetImageSize($srcFile,$info);
  6. switch ($data[2])
  7. {
  8. case 1:
  9. if(!function_exists("imagecreatefromgif")){
  10. echo "你的GD库不能使用GIF格式的图片,请使用Jpeg或PNG格式!返回";
  11. exit();
  12. }
  13. $im = ImageCreateFromGIF($srcFile);
  14. break;
  15. case 2:
  16. if(!function_exists("imagecreatefromjpeg")){
  17. echo "你的GD库不能使用jpeg格式的图片,请使用其它格式的图片!返回";
  18. exit();
  19. }
  20. $im = ImageCreateFromJpeg($srcFile);
  21. break;
  22. case 3:
  23. $im = ImageCreateFromPNG($srcFile);
  24. break;
  25. }
  26. $srcW=ImageSX($im);
  27. $srcH=ImageSY($im);
  28. $toWH=$toW/$toH;
  29. $srcWH=$srcW/$srcH;
  30. if($toWH<=$srcWH){
  31. $ftoW=$toW;
  32. $ftoH=$ftoW*($srcH/$srcW);
  33. }
  34. else{
  35. $ftoH=$toH;
  36. $ftoW=$ftoH*($srcW/$srcH);
  37. }
  38. if($srcW>$toW||$srcH>$toH)
  39. {
  40. if(function_exists("imagecreatetruecolor")){
  41. @$ni = ImageCreateTrueColor($ftoW,$ftoH);
  42. if($ni) ImageCopyResampled($ni,$im,0,0,0,0,$ftoW,$ftoH,$srcW,$srcH);
  43. else{
  44. $ni=ImageCreate($ftoW,$ftoH);
  45. ImageCopyResized($ni,$im,0,0,0,0,$ftoW,$ftoH,$srcW,$srcH);
  46. }
  47. }else{
  48. $ni=ImageCreate($ftoW,$ftoH);
  49. ImageCopyResized($ni,$im,0,0,0,0,$ftoW,$ftoH,$srcW,$srcH);
  50. }
  51. if(function_exists('imagejpeg')) ImageJpeg($ni,$toFile);
  52. else ImagePNG($ni,$toFile);
  53. ImageDestroy($ni);
  54. }
  55. ImageDestroy($im);
  56. }

人气教程排行