当前位置:首页 > PHP教程 > php图像处理 > 列表

PHP图片裁剪与缩放示例(无损裁剪图片)

发布:smiling 来源: PHP粉丝网  添加日期:2018-07-31 12:53:11 浏览: 评论:0 
exif_imagetype -- 判断一个图像的类型。

功能说明:函数功能是把一个图像裁剪为任意大小的图像,并保持图像不变形。

参数说明:输入 需要处理图片的 文件名,生成新图片的保存文件名,生成新图片的宽,生成新图片的高。

获得任意大小图像,不足地方拉伸,不产生变形,不留下空白。

  1.  
  2. functionimage_resize($src_file,$dst_file,$new_width,$new_height
  3.   
  4.   
  5.   $new_width=intval($new_width); 
  6.   
  7.      
  8.   
  9.   $new_height=intval($new_width); 
  10.   
  11.      
  12.   
  13.   if($new_width< 1 ||$new_height< 1) 
  14.   
  15.   { 
  16.   
  17.     echo"params width or height error !"
  18.   
  19.     exit(); 
  20.   
  21.   } 
  22.   
  23.      
  24.   
  25.   if(!file_exists($src_file)) 
  26.   
  27.   { 
  28.   
  29.     echo$src_file." is not exists !"
  30.   
  31.     exit(); 
  32.   
  33.   } 
  34.   
  35.      
  36.   
  37.   // 图像类型 
  38.   
  39.   $type= exif_imagetype($src_file); 
  40.   
  41.      
  42.   
  43.   $support_type=array(IMAGETYPE_JPEG, IMAGETYPE_PNG, IMAGETYPE_GIF); 
  44.   
  45.      
  46.   
  47.   if(!in_array($type,$support_type, true)) 
  48.   
  49.   { 
  50.   
  51.        
  52.   
  53.     echo"this type of image does not support! only support jpg , gif or png"
  54.   
  55.     exit(); 
  56.   
  57.   } 
  58.   
  59.      
  60.   
  61.   //Load image 
  62.   
  63.      
  64.   
  65.   switch($type
  66.   
  67.   { 
  68.   
  69.     caseIMAGETYPE_JPEG : 
  70.   
  71.          
  72.   
  73.       $src_img= imagecreatefromjpeg($src_file); 
  74.   
  75.          
  76.   
  77.       break
  78.   
  79.          
  80.   
  81.     caseIMAGETYPE_PNG : 
  82.   
  83.          
  84.   
  85.       $src_img= imagecreatefrompng($src_file); 
  86.   
  87.          
  88.   
  89.       break
  90.   
  91.          
  92.   
  93.     caseIMAGETYPE_GIF : 
  94.   
  95.          
  96.   
  97.       $src_img= imagecreatefromgif($src_file); 
  98.   
  99.          
  100.   
  101.       break
  102.   
  103.          
  104.   
  105.     default
  106.   
  107.       echo"Load image error!"
  108.   
  109.          
  110.   
  111.       exit(); 
  112.   
  113.   } 
  114.   
  115.      
  116.   
  117.   $w= imagesx($src_img); 
  118.   
  119.      
  120.   
  121.   $h= imagesy($src_img); 
  122.   
  123.      
  124.   
  125.   $ratio_w= 1.0 *$new_width/$w
  126.   
  127.      
  128.   
  129.   $ratio_h= 1.0 *$new_height/$h
  130.   
  131.      
  132.   
  133.   $ratio= 1.0; 
  134.   
  135.      
  136.   
  137.   // 生成的图像的高宽比原来的都小,或都大 ,原则是 取大比例放大,取大比例缩小(缩小的比例就比较小了) 
  138.   
  139.      
  140.   
  141.   if(($ratio_w< 1 &&$ratio_h< 1) || ($ratio_w> 1 &&$ratio_h> 1)) 
  142.   
  143.   { 
  144.   
  145.        
  146.   
  147.     if($ratio_w<$ratio_h) { 
  148.   
  149.          
  150.   
  151.       $ratio=$ratio_h
  152.   
  153.          
  154.   
  155.       // 情况一,宽度的比例比高度方向的小,按照高度的比例标准来裁剪或放大 
  156.   
  157.          
  158.   
  159.     }else
  160.   
  161.          
  162.   
  163.       $ratio=$ratio_w
  164.   
  165.          
  166.   
  167.     } 
  168.   
  169.        
  170.   
  171.     // 定义一个中间的临时图像,该图像的宽高比 正好满足目标要求 
  172.   
  173.        
  174.   
  175.     $inter_w= (int)($new_width/$ratio); 
  176.   
  177.        
  178.   
  179.     $inter_h= (int)($new_height/$ratio); 
  180.   
  181.        
  182.   
  183.     $inter_img= imagecreatetruecolor($inter_w,$inter_h); 
  184.   
  185.        
  186.   
  187.     //var_dump($inter_img); 
  188.   
  189.        
  190.   
  191.     imagecopy($inter_img,$src_img, 0, 0, 0, 0,$inter_w,$inter_h); 
  192.   
  193.        
  194.   
  195.     // 生成一个以最大边长度为大小的是目标图像$ratio比例的临时图像 
  196.   
  197.     // 定义一个新的图像 
  198.   
  199.        
  200.   
  201.     $new_img= imagecreatetruecolor($new_width,$new_height); 
  202.   
  203.        
  204.   
  205.     //var_dump($new_img);exit(); 
  206.   
  207.     imagecopyresampled($new_img,$inter_img, 0, 0, 0, 0,$new_width,$new_height,$inter_w,$inter_h); 
  208.   
  209.        
  210.   
  211.     switch($type
  212.   
  213.     { 
  214.   
  215.       caseIMAGETYPE_JPEG : 
  216.   
  217.            
  218.   
  219.         // 存储图像 
  220.   
  221.         imagejpeg($new_img,$dst_file, 100); 
  222.   
  223.            
  224.   
  225.         break
  226.   
  227.            
  228.   
  229.       caseIMAGETYPE_PNG : 
  230.   
  231.            
  232.   
  233.         imagepng($new_img,$dst_file, 100); 
  234.   
  235.            
  236.   
  237.         break
  238.   
  239.            
  240.   
  241.       caseIMAGETYPE_GIF : 
  242.   
  243.            
  244.   
  245.         imagegif($new_img,$dst_file, 100); 
  246.   
  247.            
  248.   
  249.         break
  250.   
  251.            
  252.   
  253.       default
  254.   
  255.            
  256.   
  257.         break
  258.   
  259.     } 
  260.   
  261.        
  262.   
  263.   }// end if 1 
  264.   
  265.      
  266.   
  267.   // 2 目标图像 的一个边大于原图,一个边小于原图 ,先放大平普图像,然后裁剪 
  268.   
  269.      
  270.   
  271.   // =if( ($ratio_w < 1 && $ratio_h > 1) || ($ratio_w >1 && $ratio_h<1) ) 
  272.   
  273.      
  274.   
  275.   else
  276.   
  277.        
  278.   
  279.     $ratio=$ratio_h>$ratio_w?$ratio_h:$ratio_w
  280.   
  281.        
  282.   
  283.     //取比例大的那个值 
  284.   
  285.        
  286.   
  287.     // 定义一个中间的大图像,该图像的高或宽和目标图像相等,然后对原图放大 
  288.   
  289.        
  290.   
  291.     $inter_w= (int)($w*$ratio); 
  292.   
  293.        
  294.   
  295.     $inter_h= (int)($h*$ratio); 
  296.   
  297.        
  298.   
  299.     $inter_img= imagecreatetruecolor($inter_w,$inter_h); 
  300.   
  301.        
  302.   
  303.     //将原图缩放比例后裁剪 
  304.   
  305.        
  306.   
  307.     imagecopyresampled($inter_img,$src_img, 0, 0, 0, 0,$inter_w,$inter_h,$w,$h); 
  308.   
  309.        
  310.   
  311.     // 定义一个新的图像 
  312.   
  313.        
  314.   
  315.     $new_img= imagecreatetruecolor($new_width,$new_height); 
  316.   
  317.        
  318.   
  319.     imagecopy($new_img,$inter_img, 0, 0, 0, 0,$new_width,$new_height); 
  320.   
  321.        
  322.   
  323.     switch($type
  324.   
  325.     { 
  326.   
  327.       caseIMAGETYPE_JPEG : 
  328.   
  329.            
  330.   
  331.         // 存储图像 
  332.   
  333.         imagejpeg($new_img,$dst_file, 100); 
  334.   
  335.            
  336.   
  337.         break
  338.   
  339.            
  340.   
  341.       caseIMAGETYPE_PNG : 
  342.   
  343.            
  344.   
  345.         imagepng($new_img,$dst_file, 100); 
  346.   
  347.         break
  348.   
  349.            
  350.   
  351.       caseIMAGETYPE_GIF : 
  352.   
  353.            
  354.   
  355.         imagegif($new_img,$dst_file, 100); 
  356.   
  357.            
  358.   
  359.         break
  360.   
  361.            
  362.   
  363.       default
  364.   
  365.            
  366.   
  367.         break
  368.   
  369.     } 
  370.   
  371.        
  372.   
  373.   }// if3 
  374.   
  375.      
  376.   
  377. }// end function 
  378.   
  379. //输出新图片 
  380.   
  381. image_resize('test.jpg','demo.jpg',

    Tags: 图片 示例

    分享到: