首页 > 开发 > PHP > 正文

php实现从上传文件创建缩略图的方法

2024-05-04 23:33:47
字体:
来源:转载
供稿:网友

这篇文章主要介绍了php实现从上传文件创建缩略图的方法,涉及php操作上传文件及图片操作的技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了php实现从上传文件创建缩略图的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <?php 
  2. if ($_REQUEST['action']=="add"){ 
  3. $userfile = $HTTP_POST_FILES['photo']['tmp_name']; 
  4. $userfile_name = $HTTP_POST_FILES['photo']['name']; 
  5. $userfile_size = $HTTP_POST_FILES['photo']['size']; 
  6. $userfile_type = $HTTP_POST_FILES['photo']['type']; 
  7. /////////////////////////  
  8. //GET-DECLARE DIMENSIONS // 
  9. $dimension = getimagesize($userfile); 
  10. $large_width = $dimension[0]; // GET PHOTO WIDTH 
  11. $large_height = $dimension[1]; //GET PHOTO HEIGHT 
  12. $small_width = 120; // DECLARE THUMB WIDTH 
  13. $small_height = 90; // DECLARE THUMB HEIGHT 
  14. ///////////////////////// 
  15. //CHECK SIZE // 
  16. if ($userfile_size>102400){ 
  17. $error=1; 
  18. $msg = "The photo is over 100kb. Please try again."
  19. //////////////////////////////// 
  20. // CHECK TYPE (IE AND OTHERS) // 
  21. if ($userfile_type="image/pjpeg"){ 
  22. if ($userfile_type!="image/jpeg"){ 
  23. $error=1; 
  24. $msg = "The photo must be JPG"
  25. ////////////////////////////// 
  26. //CHECK WIDTH/HEIGHT // 
  27. if ($large_width!=600 or$large_height!=400){ 
  28. $error=1; 
  29. $msg = "The photo must be 600x400 pixels"
  30. /////////////////////////////////////////// 
  31. //CREATE THUMB / UPLOAD THUMB AND PHOTO /// 
  32. if ($error<>1){ 
  33. $image = $userfile_name//if you want to insert it to the database 
  34. $pic = imagecreatefromjpeg($userfile); 
  35. $small = imagecreatetruecolor($small_width,$small_height); 
  36. imagecopyresampled($small,$pic,0,0,0,0, $small_width$small_height$large_width$large_height); 
  37. if (imagejpeg($small,"path/to/folder/to/upload/thumb".$userfile_name, 100)){  
  38. $large = imagecreatetruecolor($large_width,$large_height); 
  39. imagecopyresampled($large,$pic,0,0,0,0, $large_width$large_height$large_width$large_height); 
  40. if (imagejpeg($large,"path/to/folder/to/upload/photo".$userfile_name, 100)) 
  41. {} 
  42. else {$msg="A problem has occured. Please try again."$error=1;} 
  43. else { 
  44. $msg="A problem has occured. Please try again."$error=1; 
  45. ////////////////////////////////////////////// 
  46. /// If everything went right a photo (600x400) and 
  47. /// a thumb(120x90) were uploaded to the given folders 
  48. ?> 
  49. <html><head><title>create thumb</title></head> 
  50. <body> 
  51. <form name="form1" enctype="multipart/form-data" action="thisfile.php?action=add" method="post"
  52. Select Photo: <input type="file" name="photo"
  53. <input type="submit" name="submit" value="CREATE THUMB AND UPLOAD"
  54. </form> 
  55. </body 
  56. </html> 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表