Imagick::getImageWidth

(PECL imagick 2.0.0)

Imagick::getImageWidthВозвращает ширину изображения

Описание

int Imagick::getImageWidth ( void )

Возвращает ширину изображения.

Возвращаемые значения

Возвращает ширину изображения в пикселях.

Ошибки

Вызывает ImagickException при ошибке.

Коментарии

Автор:
<?php

$image 
= new Imagick("picture.jpg");
$width $image->getImageWidth();
print 
"the image width is " $width " pixels";

?>

Will print:
the image width is 200 pixels
2014-03-16 02:16:16
http://php5.kiev.ua/manual/ru/imagick.getimagewidth.html
I am noticing that this is returning the original size of the image when it was opened, and not the size it may have been resized to with scaleImage or resizeImage.
2015-04-16 23:08:01
http://php5.kiev.ua/manual/ru/imagick.getimagewidth.html
"bob at majdak dot net" mentioned that this function does not return the resized image size.

I use this function in production code, and it correctly returns the width for an image resized with `resizeImage()`. 
I have not tested it with `scaleImage()`.
2015-07-28 10:19:24
http://php5.kiev.ua/manual/ru/imagick.getimagewidth.html

    Поддержать сайт на родительском проекте КГБ