Jump to content

Playing With Images.. Question/Problem..


glenelkins

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.