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

php高效快速获取图片尺寸的方法

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-22 11:05:13 浏览: 评论:0 

在 php 获取图片尺寸的方法我们可以使用 getimagesize 获取图片尺寸的效率是很低的,首先需要获取整个的图片信息,然后再进行操作,下面的例子更科学算法更好,我们一起来看看吧.

方法可以用于快速获取图片尺寸信息,获取JPEG格式图片的尺寸信息,并且不需要下载读取整个图片,经测试这个函数不是对所有JPEG格式的图片都有效.

1.获取JPEG格式图片的尺寸信息,代码如下:

  1. <?php 
  2. /* 
  3.  
  4. * http://www.phpfensi.com 
  5.  
  6. */ 
  7.  
  8. // Retrieve JPEG width and height without downloading/reading entire image. 
  9.  
  10. function getjpegsize($img_loc) { 
  11.     $handle = fopen($img_loc"rb"or die("Invalid file stream."); 
  12.     $new_block = NULL; 
  13.     if(!feof($handle)) { 
  14.         $new_block = fread($handle, 32); 
  15.         $i = 0; 
  16.         if($new_block[$i]=="xFF" && $new_block[$i+1]=="xD8" && $new_block[$i+2]=="xFF" && $new_block[$i+3]=="xE0") { 
  17.             $i += 4; 
  18.             if($new_block[$i+2]=="x4A" && $new_block[$i+3]=="x46" && $new_block[$i+4]=="x49" && $new_block[$i+5]=="x46" && $new_block[$i+6]=="x00") { 
  19.                  
  20. // Read block size and skip ahead to begin cycling through blocks in search of SOF marker 
  21.  
  22.                 $block_size = unpack("H*"$new_block[$i] . $new_block[$i+1]); 
  23.                 $block_size = hexdec($block_size[1]); 
  24.                 while(!feof($handle)) { 
  25.                     $i += $block_size
  26.                     $new_block .= fread($handle$block_size); 
  27.                     if($new_block[$i]=="xFF") { 
  28.                          
  29. // New block detected, check for SOF marker 
  30.  
  31.                         $sof_marker = array("xC0""xC1""xC2""xC3""xC5""xC6""xC7""xC8""xC9""xCA""xCB""xCD""xCE""xCF"); 
  32.                         if(in_array($new_block[$i+1], $sof_marker)) { 
  33.                              
  34. // SOF marker detected. Width and height information is contained in bytes 4-7 after this byte. 
  35.  
  36.                             $size_data = $new_block[$i+2] . $new_block[$i+3] . $new_block[$i+4] . $new_block[$i+5] . $new_block[$i+6] . $new_block[$i+7] . $new_block[$i+8]; 
  37.                             $unpacked = unpack("H*"$size_data); 
  38.                             $unpacked = $unpacked[1]; 
  39.                             $height = hexdec($unpacked[6] . $unpacked[7] . $unpacked[8] . $unpacked[9]); 
  40.                             $width = hexdec($unpacked[10] . $unpacked[11] . $unpacked[12] . $unpacked[13]); 
  41.                             return array($width$height); 
  42.                         } else { 
  43.                              
  44. // Skip block marker and read block size 
  45.  
  46.                             $i += 2; 
  47.                             $block_size = unpack("H*"$new_block[$i] . $new_block[$i+1]); 
  48.                             $block_size = hexdec($block_size[1]); 
  49.                         } 
  50.                     } else { 
  51.                         return FALSE; 
  52.                     } 
  53.                 } 
  54.             } 
  55.         } 
  56.     } 
  57.     return FALSE; 
  58. ?> 

2.实例代码如下:

  1. $url='http://www.phpfensi.com/images/201203/08/1331189004_28093400.jpg'
  2. $image_content = file_get_contents($url); 
  3. $image = imagecreatefromstring($image_content); 
  4. $width = imagesx($image); 
  5. $height = imagesy($image); 
  6. echo $width.'*'.$height."nr";

Tags: php图片尺寸 php获取图片尺寸

分享到:

相关文章