PHP GD imagesy


 

PHP GD imagesy

This example shows how to get imagesy in php gd.

This example shows how to get imagesy in php gd.

<?php

$img = imagecreatetruecolor(300, 200);

echo imagesy($img);

?>

After running the program you will get the following output

OUTPUT:200

Ads