I have this function below to allow me to resize my uploaded image,

function resize_image($image,$width,$height,$scale) 
{
    list($imagewidth, $imageheight, $imageType) = getimagesize($image);
    $imageType = image_type_to_mime_type($imageType);
    $newImageWidth = ceil($width * $scale);
    $newImageHeight = ceil($height * $scale);
    $newImage = imagecreatetruecolor($newImageWidth,$newImageHeight);

    switch($imageType) 
    {
        case "image/gif":
            $source = imagecreatefromgif($image); 
            break;
        case "image/pjpeg":
        case "image/jpeg":
        case "image/jpg":
            $source = imagecreatefromjpeg($image); 
            break;
        case "image/png":
        case "image/x-png":
            $source = imagecreatefrompng($image); 
            break;
    }

    imagecopyresampled($newImage,$source,0,0,0,0,$newImageWidth,$newImageHeight,$width,$height);

    switch($imageType) 
    {
        case "image/gif":
            imagegif($newImage,$image); 
            break;
        case "image/pjpeg":
        case "image/jpeg":
        case "image/jpg":
            imagejpeg($newImage,$image,90); 
            break;
        case "image/png":
        case "image/x-png":
            imagepng($newImage,$image);  
            break;
    }

    chmod($image, 0777);
    return $image;
}

But this function has a problem which is that it cannot create transparency when I have a png or a gif with a transparent background.

How can I fix this function to allow transparency with php?

link|improve this question

2  
possible duplicate of php resize script doesn't work for transparent gif's – hakre Jul 25 '11 at 17:13
tested it. and the answer from that post and it has a bug too. thanks. – lauthiamkok Jul 25 '11 at 18:47
feedback

3 Answers

Looking at an open-sourced smart_resize_image method, it appears they check for imagecolortransparent and, if present, re-apply it to the new image.

May be worth a look to check out that project on github instead of re-inventing the wheel. Also gives you some insight in to how they do it, and is the work of a collaboration of efforts (a lot of people working around known [and unknown] bugs).

link|improve this answer
thanks. I tested the smart_resize_image method and it has a bug for sure when you upload a gif transparent. If you scan the code quickly, you can tell easily what it does wrong. – lauthiamkok Jul 25 '11 at 18:46
feedback

In order for GD Lib to draw transparency, you have to define a transparent color. You might sample a color somewhere on the graphic and use that.

http://www.php.net/manual/en/function.imagecolortransparent.php

link|improve this answer
feedback
up vote 0 down vote accepted

Here is my answer,

# This is the resizing/resampling/transparency-preserving magic
    if ( ($imageType == "image/gif") || ($imageType == "image/png") ) 
    {
        $transindex = imagecolortransparent($source);

        if($transindex >= 0) 
        {
            $transcol = imagecolorsforindex($source, $transindex);
            $transindex = imagecolorallocatealpha($newImage, $transcol['red'], $transcol['green'], $transcol['blue'], 127);
            imagefill($newImage, 0, 0, $transindex);
            imagecolortransparent($newImage, $transindex);
        }

        elseif ($imageType == "image/png" || $imageType == "image/x-png") 
        {
            imagealphablending($newImage, false);
            $color = imagecolorallocatealpha($newImage, 0, 0, 0, 127);
            imagefill($newImage, 0, 0, $color);
            imagesavealpha($newImage, true);
        }
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.