PHP Doku:: Returns the image length in bytes - function.imagick-getimagesize.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungImage Processing (ImageMagick)The Imagick classImagick::getImageSize

Ein Service von Reinhard Neidl - Webprogrammierung.

The Imagick class

<<Imagick::getImageSignature

Imagick::getImageTicksPerSecond>>

Imagick::getImageSize

(PECL imagick 2.0.0)

Imagick::getImageSizeReturns the image length in bytes

Beschreibung

int Imagick::getImageSize ( void )
Warnung

Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.

Returns the image length in bytes

Rückgabewerte

Returns an int containing the current image size.


5 BenutzerBeiträge:
- Beiträge aktualisieren...
murphy(at)murphyslantech(dot)de
30.11.2010 16:21
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 ...
Ricardo Cordts Monteiro
12.02.2010 13:11
Practical use to get the dimensions of the image:

<?php
$image
= new Imagick($image_src);
$d = $image->getImageGeometry();
$w = $d['width'];
$h = $d['height'];
?>
nikolaus
17.10.2009 9:52
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.
benford at bluhelix dot com
23.06.2009 0:12
Try Imagick::getSize, Imagick::getImageWidth, or Imagick::getImageHeight if you are looking to get dimensions in pixels (rows, columns) of the current image.
perching_eagle at yahoo dot com
5.10.2007 3:37
/* 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



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)