getimagesizefromstring — 從字符串中獲取圖像尺寸信息。
array getimagesizefromstring ( string $imagedata [, array &$imageinfo ] )
同 getimagesize() 函數(shù)。 區(qū)別是 getimagesizefromstring() 第一個參數(shù)是圖像數(shù)據(jù)的字符串表達(dá),而不是文件名。
參數(shù)
imagedata:圖像數(shù)據(jù)的字符串表示。
imageinfo:參見 getimagesize() 函數(shù)。
<?php $img = 'nhooo-logo.png'; // 以文件方式打開 $size_info1 = getimagesize($img); // 以字符串格式打開 $data = file_get_contents($img); $size_info2 = getimagesizefromstring($data); print_r($size_info2); ?>
以上示例輸出結(jié)果為:
Array ( [0] => 290 [1] => 69 [2] => 3 [3] => width="290" height="69" [bits] => 8 [mime] => image/png )