Jump to content

getimagesize of imagecreatetruecolor


iwarlord

Recommended Posts

I'm wanting to find the dimensions of an image I have created. I have tried the following code

 

<?php

header ('Content-type: image/png');

$im = @imagecreatetruecolor(120, 20)

      or die('Cannot Initialize new GD image stream');

$text_color = imagecolorallocate($im, 233, 14, 91);

 

list($width, $height, $type, $attr) = getimagesize($im);

 

 

imagestring($im, 1, 5, 5,  "".$width."", $text_color);

imagepng($im);

imagedestroy($im);

?>

 

but it doesn't seem to work. Can anyone help me?

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/135372-getimagesize-of-imagecreatetruecolor/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.