glenelkins Posted May 31, 2006 Share Posted May 31, 2006 ok so here is the function to upload, and resize an image:[code] function resize_image ($new_width,$new_height,$source_path,$dest_path,$src_image) { $dest_image_name = $src_image; $destimg=ImageCreateTrueColor($new_width,$new_height); $srcimg=ImageCreateFromJPEG($source_path.$dest_image_name) or die ("Problem Opening Source Image"); ImageCopyResized($destimg,$srcimg,0,0,0,0,$new_width,$new_height,ImageSX($srcimg),ImageSY($srcimg)) or die ("Problem In Resizing"); ImageJPEG($destimg,$dest_path.$dest_image_name) or die ("Problem With Saving"); return(true); } [/code]But the images uploaded are completely the wrong colour pallet. They are crappy looking!! how do i keep the same pallet as the originals?? Quote Link to comment https://forums.phpfreaks.com/topic/10868-playing-with-images-questionproblem/ Share on other sites More sharing options...
rathfon Posted May 31, 2006 Share Posted May 31, 2006 Try setting the quality in the imageJPEG? Hm.. Lemme know. Like: ImageJPEG($destimg,$dest_path.$dest_image_name, 100) Quote Link to comment https://forums.phpfreaks.com/topic/10868-playing-with-images-questionproblem/#findComment-40629 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.