Code is pretty much self explanatory...
I was wonder what $canvas is carry after setting imagecreatetruecolor(360,240)
$canvas=imagecreatetruecolor(360,240);
var_dump($canvas);
Output :
resource(2) of type (gd)
How can I really get what's going on inside $canvas
?