Imagick::getImageSize

(PECL imagick 2.0.0)

Imagick::getImageSizeВозвращает размер (длину) изображения в байтах

Описание

int Imagick::getImageSize ( void )

Возвращает размер (длину) изображения в байтах

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

Возвращает целое число, содержащее текущий размер изображения.

Коментарии

/* get the size of the image in bytes */
$image=new Imagick("c:/htdocs/rose.jpg");
$size=$image->getImageSize();
print "the size of the picture is ".$size." bytes";

result

the size of the picture is 3461 bytes
2007-10-04 21:37:02
http://php5.kiev.ua/manual/ru/imagick.getimagesize.html
Try Imagick::getSize, Imagick::getImageWidth, or Imagick::getImageHeight if you are looking to get dimensions in pixels (rows, columns) of the current image.
2009-06-22 18:12:22
http://php5.kiev.ua/manual/ru/imagick.getimagesize.html
Автор:
If you're planning to stream imagick images via http, pay attention that this function may return the uncompressed image size, so it's not directly suitable for setting the content-length http header.
2009-10-17 03:52:52
http://php5.kiev.ua/manual/ru/imagick.getimagesize.html
Practical use to get the dimensions of the image:

<?php
$image 
= new Imagick($image_src);
$d $image->getImageGeometry();
$w $d['width'];
$h $d['height'];
?>
2010-02-12 06:11:49
http://php5.kiev.ua/manual/ru/imagick.getimagesize.html
If you get an error or warning (when using strict settings for PHP), telling you, that this function should not be used anymore try getImageLength() instead ...
2010-11-30 09:21:01
http://php5.kiev.ua/manual/ru/imagick.getimagesize.html

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