I am trying to resize image - $im.
A picture is not displayed
$im prints ok if I swap the comment tags between the images.
$smallim displays it the copyresized line is omitted.
Could someone please tell me what I am missing
Keith
A picture is not displayed
$im prints ok if I swap the comment tags between the images.
$smallim displays it the copyresized line is omitted.
Could someone please tell me what I am missing
Code:
$smallim = imagecreatetruecolor(100, 100 );
imagecopyresized{$smallim,$im,0,0,0,0,100,100,200,200);
imagejpeg($smallim);
//imagejpeg($im);
Keith