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?? 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) Link to comment https://forums.phpfreaks.com/topic/10868-playing-with-images-questionproblem/#findComment-40629 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.