PHP GD imagesx


 

PHP GD imagesx

This example shows how to display imagesx in php gd.

This example shows how to display imagesx in php gd.

<?php

$img = imagecreatetruecolor(300, 200);

echo imagesx($img);

?>

After running the program you will get the following output

OUTPUT :300

Ads