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


PHP Imagick identifyImage()用法及代码示例


Imagick::identifyImage()函数是PHP中的内置函数,用于标识图像并返回其属性。属性包含图像的宽度,高度,大小等。

用法:

array Imagick::identifyImage( $appendRawOutput )

参数:该函数接受单个参数$appendRawOutput,该参数用于存储值TRUE /FALSE。如果将其设置为TRUE,则原始输出将附加到数组。


返回值:此函数返回图像属性。

原始图片:

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

程序1:

<?php  
  
// require_once('path/vendor/autoload.php');  
  
// Create an Imagick Object 
$imagick = new \Imagick( 
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-19.png'); 
      
// Use identifyImage Function 
var_dump ($imagick->identifyImage()); 
?>

输出:

array(11) { 
    ["imageName"]=> string(0) "" 
    ["mimetype"]=> string(9) "image/png" 
    ["format"]=> string(31) "PNG (Portable Network Graphics)" 
    ["units"]=> string(19) "PixelsPerCentimeter" 
    ["type"]=> string(14) "TrueColorAlpha" 
    ["colorSpace"]=> string(4) "sRGB" 
    ["compression"]=> string(3) "Zip" 
    ["fileSize"]=> string(6) "45.4KB" 
    ["geometry"]=> array(2) { ["width"]=> int(667) ["height"]=> int(184) } 
    ["resolution"]=> array(2) { ["x"]=> float(37.8) ["y"]=> float(37.8) } 
    ["signature"]=> string(64) "f64054f5bcb4cfb82c6126eff6d3d4e6be7d0e72d5620033442cecb4b9feabbd" 
}

程序2:

<?php  
  
$string = "Computer Science portal for Geeks!";  
  
// Creating new image of above String  
// and add color and background  
$im = new Imagick();  
$draw = new ImagickDraw();  
  
// Fill the color in image  
$draw->setFillColor(new ImagickPixel('green'));  
  
// Set the text font size  
$draw->setFontSize(50);  
  
$metrix = $im->queryFontMetrics($draw, $string);  
$draw->annotation(0, 40, $string);  
$im->newImage($metrix['textWidth'], $metrix['textHeight'],  
new ImagickPixel('white'));  
  
// Draw the image          
$im->drawImage($draw);  
  
// identifyImage Function 
var_dump ($im->identifyImage()); 
?> 

输出:

array(10) { 
    ["imageName"]=> string(0) "" 
    ["mimetype"]=> string(8) "image/x-" 
    ["units"]=> string(9) "Undefined" 
    ["type"]=> string(12) "PaletteAlpha" 
    ["colorSpace"]=> string(4) "sRGB" 
    ["compression"]=> string(9) "Undefined" 
    ["fileSize"]=> string(2) "0B" 
    ["geometry"]=> array(2) { ["width"]=> int(797) ["height"]=> int(62) } 
    ["resolution"]=> array(2) { ["x"]=> float(0) ["y"]=> float(0) } 
    ["signature"]=> string(64) "7c71a28f88b25287580277af67861eaa6f02bd5e473c88aa3bc5c046a761491d" 
}

参考: http://php.net/manual/en/imagick.identifyimage.php



相关用法


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