Programming C, C++, Java, PHP, Ruby, Turing, VB
Computer Science Canada 
Programming C, C++, Java, PHP, Ruby, Turing, VB  

Username:   Password: 
 RegisterRegister   
 new image problems...
Index -> Programming, PHP -> PHP Help
Goto page Previous  1, 2
View previous topic Printable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic
Author Message
Amailer




PostPosted: Sun Nov 02, 2003 11:10 pm   Post subject: (No subject)

Oh very odd, ill recreate that image and SAVE as JPG :S
Sponsor
Sponsor
Sponsor
sponsor
Amailer




PostPosted: Mon Nov 03, 2003 9:53 pm   Post subject: (No subject)

OK I GOT IT TO WORK FOR ME (MY SERVER!)
http://termix-zero.ath.cx/pictures/new_image.php

code:

    if (isset($im)) {
        // Generate a thumbnail of the image
        if (!isset($iw)) {
                        $iw = 90;
                }

        $iname = $im;

        if (ereg('png$',$im)) {   
                        header("Content-Type: image/png");
                        $i = imagecreatefrompng($iname);
                        }
        if (ereg('jpg$',$im)) {   
                        header("Content-Type: image/jpeg");
                        $i = imagecreatefromjpeg($iname);
                        }
        if (ereg('gif$',$im)) {   
                        header("Content-Type: image/gif");
                        $i = imagecreatefromgif($iname);
                        }
        $i2 = imagecreatetruecolor($iw,($iw*(imagesy($i)/imagesx($i)))+1);
        imagecopyresized($i2,$i,0,0,0,0,$iw,$iw*(imagesy($i)/imagesx($i))+1,imagesx($i),imagesy($i));       
        imagejpeg($i2);
        exit;


WORKS ;D

BUT NOT ON THE SOURCEFORGE SERVER
HELP

NOTE: THIS TIME IM USING PNGS!
Amailer




PostPosted: Mon Nov 03, 2003 9:56 pm   Post subject: (No subject)

NEVER MIND...WRONG DIR :S!
EXCEPT THE QULITY IS VERY BAD...how to improve it?
Display posts from previous:   
   Index -> Programming, PHP -> PHP Help
View previous topic Tell A FriendPrintable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic

Page 2 of 2  [ 18 Posts ]
Goto page Previous  1, 2
Jump to:   


Style:  
Search: