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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。