Jump to content

[SOLVED] image upload GD issues


Asperon

Recommended Posts

the user uploads an image and it uses GD depending on the type of image

 

<?php

$logo = $_POST['upfile'];


//code....


//blah....

$path_info = pathinfo($logo);

$ext = $path_info['extension'];

switch($ext){

case 'gif' :
   $clogo = ImageCreateFromGIF($logo);
   break;
case 'jpg' :
   $clogo = ImageCreateFromJPEG($logo);
    break;
case 'png' :
   $clogo = ImageCreateFromPNG($logo);
   break;

}

$logo_w = 125;
$logo_h = 75;
imagecopy($im,$clogo,1,75,0,0,$logo_w,$logo_h);


?>

 

Now my image $im and all the previous code is fine, when I upload the image file it copies it onto an image I had already created in GD, if its a gif, it works, but anything else doesn't, jpg or png. does anyone know why? I've check php.net and other sources, but I still have not found an answer.

Link to comment
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.