Imagick::getImageWidth

(PECL imagick 2, PECL imagick 3)

Imagick::getImageWidthGörüntü genişliğini döndürür

Açıklama

public Imagick::getImageWidth(): int

Görüntü genişliğini döndürür.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Görüntü genişliğini döndürür.

Hatalar/İstisnalar

Hata durumunda bir ImagickException istisnası oluşur.

add a note

User Contributed Notes 3 notes

up
2
terry
11 years ago
<?php$image = new Imagick("picture.jpg");$width = $image->getImageWidth();print "the image width is " . $width . " pixels";?>Will print:the image width is 200 pixels
up
2
bob at majdak dot net
10 years ago
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.
up
0
nospam dot karst at onlinq dot nl
10 years ago
"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()`.
To Top