Hi,
I have researched everywhere but couldn't find how to load the image created in the <IMG SRC>
<?php
$src = imagecreatefromjpeg('IMG_0154-ea.jpg');
$dest = imagecreatetruecolor(1800, 1600);
imagecopyresized($dest, $src, 30, 30, 0, 0, 300, 200,1024,683);
//imagecopyresized ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )
header('Content-type: image/jpeg');
$pic=imagejpeg($dest);
?>
<IMG SRC="<?php echo $pic; ?>" >
How do you guys load the image in the IMG SRC?