Imagick::getImageWidth()函數是PHP中的內置函數,用於獲取圖像的寬度。
用法:
int Imagick::getImageWidth( void )
參數:該函數不接受任何參數。
返回值:此函數返回以像素為單位的圖像寬度。
Original Image
以下示例程序旨在說明PHP中的Imagick::getImageWidth()函數:
程序:
<?php
// require_once('path/vendor/autoload.php');
// Create an Imagick Object
$image = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png');
// Function to get the width of image
$width = $image->getImageWidth();
// Display the image width in pixel.
print_r($width);
?>
輸出:
667
相關文章:
參考: http://php.net/manual/en/imagick.getimagewidth.php
相關用法
- PHP Gmagick getimagewidth()用法及代碼示例
- PHP Imagick distortImage()用法及代碼示例
- PHP Imagick readImages()用法及代碼示例
- PHP Imagick extentImage()用法及代碼示例
- PHP Imagick despeckleImage()用法及代碼示例
- PHP Imagick readImage()用法及代碼示例
- PHP Imagick convolveImage()用法及代碼示例
- PHP Imagick readImageFile()用法及代碼示例
- PHP Imagick remapImage()用法及代碼示例
- PHP Imagick enhanceImage()用法及代碼示例
- PHP Imagick encipherImage()用法及代碼示例
- PHP Imagick equalizeImage()用法及代碼示例
- PHP Imagick gaussianBlurImage()用法及代碼示例
- PHP Imagick randomThresholdImage()用法及代碼示例
- PHP Imagick edgeImage()用法及代碼示例
注:本文由純淨天空篩選整理自sarthak_ishu11大神的英文原創作品 PHP | Imagick getImageWidth() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。