cooldude832 Posted September 24, 2009 Share Posted September 24, 2009 using this block (modify the png functions for jpeg/gif) works fine on jpg/gif no good on pngs gives a oversized black box <?php $image_p = imagecreatetruecolor($width,$height); $im = imagecreatefrompng("uploads/".$tmp_name); imagecopyresampled($image_p, $im, 0, 0, 0, 0, $i_dat[0],$i_dat[1], $width, $height); $ipath = "images/icons/users/".$imgid.".png"; $fp = fopen($ipath,"x"); fclose($fp); imagepng($image_p,$ipath); unlink($tmp_pos); $q = "Update `".IMAGES_TABLE."` Set Ext = 'png' Where ImageID = '".input_clean($imgid)."' LIMIT 1"; $r = mysql_query($q) or die(mysql_error()."<br /><br />".$q); ?> Quote Link to comment Share on other sites More sharing options...
cooldude832 Posted September 24, 2009 Author Share Posted September 24, 2009 It is only failing on oversized pngs any ideas? Quote Link to comment Share on other sites More sharing options...
thehippy Posted September 28, 2009 Share Posted September 28, 2009 Was PNG support built into the extension? There's a note in the imagecopyresampled() about images with large palette sizes (255+1) in which you may want to use imagecreatetruecolor() in that instance. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.