PHP 8.4.0 RC4 available for testing

Imagick::getImageSize

(PECL imagick 2, PECL imagick 3)

Imagick::getImageSizeRetorna o comprimento da imagem em bytes

Aviso

Esta função tornou-se DEFASADA a partir da Imagick 3.4.4. O uso desta função é fortemente desencorajado.

Descrição

public Imagick::getImageSize(): int

Retorna o comprimento da imagem em bytes. Função preterida em favor de Imagick::getImageLength()

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Retorna um int contendo o comprimento atual da imagem.

adicione uma nota

Notas Enviadas por Usuários (em inglês) 5 notes

up
19
Ricardo Cordts Monteiro
14 years ago
Practical use to get the dimensions of the image:

<?php
$image
= new Imagick($image_src);
$d = $image->getImageGeometry();
$w = $d['width'];
$h = $d['height'];
?>
up
1
benford at bluhelix dot com
15 years ago
Try Imagick::getSize, Imagick::getImageWidth, or Imagick::getImageHeight if you are looking to get dimensions in pixels (rows, columns) of the current image.
up
0
murphy(at)murphyslantech(dot)de
13 years ago
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 ...
up
0
nikolaus
15 years ago
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.
up
0
perching_eagle at yahoo dot com
17 years ago
/* 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
To Top