downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Imagick::getImageHistogram> <Imagick::getImageGreenPrimary
[edit] Last updated: Fri, 17 May 2013

view this page in

Imagick::getImageHeight

(PECL imagick 2.0.0)

Imagick::getImageHeightReturns the image height

Description

int Imagick::getImageHeight ( void )

Returns the image height.

Return Values

Returns the image height in pixels.

Errors/Exceptions

Throws ImagickException on error.



add a note add a note User Contributed Notes Imagick::getImageHeight - [1 notes]
up
0
perching_eagle at yahoo dot com
5 years ago
//file location c:/htdocs/rose.jpg
$image=new Imagick("c:/htdocs/rose.jpg");
$height=$image->getImageHeight();
print "the image height is ".$height;

result:
the image height is 134

 
show source | credits | sitemap | contact | advertising | mirror sites