91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用php怎么獲取圖片的尺寸

發布時間:2020-12-16 15:20:02 來源:億速云 閱讀:163 作者:Leah 欄目:開發技術

這篇文章給大家介紹利用php怎么獲取圖片的尺寸,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

php 獲取圖片尺寸的方法我們可以使用 getimagesize 獲取圖片尺寸,但是效率是很低的,首先需要獲取整個的圖片信息,然后再進行操作,下面的例子更科學算法更好,我們一起來看看吧.

方法可以用于快速獲取圖片尺寸信息,獲取JPEG格式圖片的尺寸信息,并且不需要下載讀取整個圖片,經測試這個函數不是對所有JPEG格式的圖片都有效.

1.獲取JPEG格式圖片的尺寸信息,代碼如下:

<?php 
/* 
* https://www.jb51.net
*/ 
 
// Retrieve JPEG width and height without downloading/reading entire image. 
function getjpegsize($img_loc) { 
    $handle = fopen($img_loc, "rb") or die("Invalid file stream."); 
    $new_block = NULL; 
    if(!feof($handle)) { 
        $new_block = fread($handle, 32); 
        $i = 0; 
        if($new_block[$i]=="xFF" && $new_block[$i+1]=="xD8" && $new_block[$i+2]=="xFF" && $new_block[$i+3]=="xE0") { 
            $i += 4; 
            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") { 
                 
// Read block size and skip ahead to begin cycling through blocks in search of SOF marker 
 
                $block_size = unpack("H*", $new_block[$i] . $new_block[$i+1]); 
                $block_size = hexdec($block_size[1]); 
                while(!feof($handle)) { 
                    $i += $block_size; 
                    $new_block .= fread($handle, $block_size); 
                    if($new_block[$i]=="xFF") { 
                         
// New block detected, check for SOF marker 
 
                        $sof_marker = array("xC0", "xC1", "xC2", "xC3", "xC5", "xC6", "xC7", "xC8", "xC9", "xCA", "xCB", "xCD", "xCE", "xCF"); 
                        if(in_array($new_block[$i+1], $sof_marker)) { 
                             
// SOF marker detected. Width and height information is contained in bytes 4-7 after this byte. 
 
                            $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]; 
                            $unpacked = unpack("H*", $size_data); 
                            $unpacked = $unpacked[1]; 
                            $height = hexdec($unpacked[6] . $unpacked[7] . $unpacked[8] . $unpacked[9]); 
                            $width = hexdec($unpacked[10] . $unpacked[11] . $unpacked[12] . $unpacked[13]); 
                            return array($width, $height); 
                        } else { 
                             
// Skip block marker and read block size 
 
                            $i += 2; 
                            $block_size = unpack("H*", $new_block[$i] . $new_block[$i+1]); 
                            $block_size = hexdec($block_size[1]); 
                        } 
                    } else { 
                        return FALSE; 
                    } 
                } 
            } 
        } 
    } 
    return FALSE; 
} 
?>


2.實例代碼如下:

$url='https://cache.yisu.com/upload/information/20201209/266/42321.jpg'; 
$image_content = file_get_contents($url); 
$image = imagecreatefromstring($image_content); 
$width = imagesx($image); 
$height = imagesy($image); 
echo $width.'*'.$height."nr";

關于利用php怎么獲取圖片的尺寸就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI

武胜县| 新宁县| 宿松县| 昔阳县| 都江堰市| 拜城县| 岢岚县| 阳曲县| 普格县| 紫金县| 横峰县| 崇明县| 金湖县| 平山县| 永平县| 长沙县| 浙江省| 义乌市| 米林县| 绩溪县| 尉犁县| 莲花县| 兴业县| 延边| 仙居县| 满洲里市| 辰溪县| 洛扎县| 铁岭县| 德江县| 祁连县| 嵊州市| 象山县| 旌德县| 莱阳市| 铜陵市| 文成县| 花莲县| 曲靖市| 安岳县| 蕉岭县|