當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。