imagecopy doesn't work with high res images Programming Web Development by twoclicks …); header('Content-Type: image/png'); imagejpeg($image, 'img/done.jpg'); $photoframe = 'img/done.jpg'; imagedestroy($image); imagedestroy($frame); ?> <div… class="preview-img" src="<?php echo $photoframe; ?>" alt="Your Image" title="Your… Re: code of image genration Programming Web Development by Shanti C … = imagesx($photo); $fotoH = imagesy($photo); $photoFrame = imagecreatetruecolor(600,338); $logoImage = imagecreatefrompng('logo.png'); imagecopyresampled($photoFrame, $photo, 0, 0, 0, 0, 600… $fotoW, $fotoH); $logoW = imagesx($logoImage); $logoH = imagesy($logoImage); imagecopy($photoFrame, $logoImage, 0, 0, 0, 0, $logoW, $logoH); imagejpeg… Re: Laptop is not up to specifications Hardware and Software Information Security by SerbOz … 8.04 Photo Notifier and Animation Creator Photo to Cartoon PhotoFrame Pro 3.1 PhotoMail Maker QuarkXPress QuickTime Quite Imposing Plus… Re: imagecopy doesn't work with high res images Programming Web Development by cereal Maybe it's a memory limit issue, i.e. the memory used by PHP scripts, did you get any error? If error reporting is disabled, place [icode]<?php error_reporting(E_ALL); ?>[/icode] at top of the script and see what it happens. Re: imagecopy doesn't work with high res images Programming Web Development by twoclicks Hi Cereal Seems like memory limit issue :-) It works fine after i change the maximum limit to 128M from php.ini. Thank you for your help. Re: imagecopy doesn't work with high res images Programming Web Development by jbennet Image manipulation in php is always iffy, make sure that people can't keep hammering it or your server will grind to a halt. Re: imagecopy doesn't work with high res images Programming Web Development by twoclicks Hi jbeneet, thanks for your advice :D i will keep that in mind Re: imagecopy doesn't work with high res images Programming Web Development by cereal Ok, if we've finished mark this thread as solved, bye :) Re: imagecopy doesn't work with high res images Programming Web Development by jbennet Done.