当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP getimagesizefromstring()用法及代码示例


getimagesizefromstring()函数是PHP中的内置函数,用于从字符串获取图像的大小。此函数接受图像数据作为字符串参数,并确定图像大小,然后返回尺寸以及文件类型和图像的高度/宽度。

用法:

array getimagesizefromstring( $imagedata, &$imageinfo )

参数:该函数接受上述和以下描述的两个参数:


  • $filename:这是一个强制参数,它接受图像数据作为字符串。
  • $imageinfo:它是一个可选参数,它允许从图像文件中提取一些扩展信息,例如将不同的JPG APP标记作为关联数组。

返回值:此函数返回尺寸以及文件类型和高度/宽度文本字符串。

以下示例程序旨在说明PHP中的getimagesizefromstring()函数:

图片:

示例1:

<?php 
  
$img =  
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-25.png'; 
   
// Open image as a string 
$data = file_get_contents($img); 
   
// getimagesizefromstring function accepts image data as string 
$info = getimagesizefromstring($data); 
  
// Display the image content 
var_dump($info); 
?>

输出:

array(6) { 
    [0]=> int(667) 
    [1]=> int(184) 
    [2]=> int(3) 
    [3]=> string(24) "width="667" height="184"" 
    ["bits"]=> int(8) 
    ["mime"]=> string(9) "image/png" 
} 

示例2:

<?php 
$img =  
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-25.png'; 
   
// Open image as a string 
$data = file_get_contents($img); 
  
// getimagesizefromstring function accepts image data as string 
list($width, $height, $type, $attr) = getimagesizefromstring($data); 
   
// Displaying dimensions of the image  
echo "Width of image: " . $width . "<br>";  
     
echo "Height of image: " . $height . "<br>";  
     
echo "Image type: " . $type . "<br>";  
     
echo "Image attribute: " . $attr;  
?>

输出:

Width of image: 667
Height of image: 184
Image type: 3
Image attribute: width="667" height="184"

参考: http://php.net/manual/en/function.getimagesizefromstring.php



相关用法


注:本文由纯净天空筛选整理自sarthak_ishu11大神的英文原创作品 PHP | getimagesizefromstring() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。