Imagick::pingImage()函數是PHP中的內置函數,用於獲取圖像的基本屬性。此方法用於查詢圖像的寬度,高度,大小和格式,而無需將整個圖像讀入內存。
用法:
bool Imagick::pingImage( $filename )
參數:該函數接受單個參數$filename,該參數保存圖像的文件名。
返回值:成功時此函數返回True。
以下示例程序旨在說明PHP中的Imagick::pingImage()函數:
程序:該程序借助圖像鏈接告訴圖像的高度和寬度。
<?php
// Create new Imagick object
$image = new Imagick();
// Use Imagick::pingImage() function to the image
$image->pingImage(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-6.png');
// Use getImageWidth() function to for image width attribute
$width = $image->getImageWidth();
// Use getImageHeight() function to for image width attribute
$height = $image->getImageHeight();
// Display the output
echo "Width of image: " . $width . "px<br>";
echo "Height of image: " . $height . "px";
?>
輸出:
Width of image: 600px Height of image: 135px
參考: https://www.php.net/manual/en/imagick.pingimage.php
相關用法
- PHP Imagick morphImages()用法及代碼示例
- PHP Imagick colorFloodfillImage()用法及代碼示例
- PHP Imagick linearStretchImage()用法及代碼示例
- PHP Imagick levelImage()用法及代碼示例
- PHP Imagick setImageDispose()用法及代碼示例
- PHP Imagick profileImage()用法及代碼示例
- PHP Imagick coalesceImages()用法及代碼示例
- PHP Imagick functionImage()用法及代碼示例
- PHP Imagick smushImages()用法及代碼示例
- PHP Imagick readImageBlob()用法及代碼示例
- PHP Imagick identifyFormat()用法及代碼示例
- PHP Imagick colorizeImage()用法及代碼示例
- PHP Imagick addImage()用法及代碼示例
- PHP Imagick setImageDelay()用法及代碼示例
- PHP Imagick clear()用法及代碼示例
注:本文由純淨天空篩選整理自piyush25pv大神的英文原創作品 PHP | Imagick pingImage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。