I have an image.png with white background and some trasparceny over it.

I tried this to convert the image into jpg:

$data = file_get_contents('image.png');
$resource = imagecreatefromstring($data);
imagejpeg($resource); //> I TRIED WITH QUALITY = 100 TOO

Problem is where the png got the trasparency now the jpg got a pretty huge black zone. This is how jpg looks:

Any way to solve the problem?

Edit1:

As suggested by Abiusx I tried this too:

$data = file_get_contents('image.png');
$resource = imagecreatefromstring($data);
imagealphablending($data, false);
imagesavealpha($data, true);
imagejpeg($resource);

But the result was the same. Please note The source .png image is:

Thanks to Patrick comment: here the trick: GD! Converting a png image to jpeg and making the alpha by default white and not black.

link|improve this question

i dont exactly recall but help is provided on php website (via comments), i'll look for it and post here in a while. – AbiusX Mar 15 '11 at 0:58
Oh, Jpeg does not support transparency. I didnt read ur title. only PNG and GIf support transparency. – AbiusX Mar 15 '11 at 0:59
@abiusx: yes i don't want to keep traspareceny in my jpg, I just want that the final jpg without that black patch – yes123 Mar 15 '11 at 1:27
2  
take a look at this SO question – Patrick Mar 15 '11 at 1:31
feedback

2 Answers

This is the function I use to resize a PNG but preserve transparency, if it doesnt help, tell me to extract the parts necessary for you:

function Resize($ImageFile,$OriginalFile)
{
    $ext=basename($OriginalFile);
    $ext=explode(".",$ext);
    $ext=array_pop($ext);
    $ext=strtolower($ext);
    if ($ext=="jpg" or $ext=="jpeg" or $ext=="jpe")
        $img=imagecreatefromjpeg($ImageFile);
    elseif ($ext=="png")
        $img=imagecreatefrompng($ImageFile);
    elseif ($ext=="gif")
        $img=imagecreatefromgif($ImageFile);
    else
        return false;
    list($w,$h)=getimagesize($ImageFile);
    $dstimg=imagecreatetruecolor(140,100);

    imagealphablending($dstimg, false);
    imagecopyresampled($dstimg,$img,0,0,0,0,140,100,$w,$h);
    imagesavealpha($dstimg, true);
    imagepng($dstimg,$ImageFile);
    return true;
}
link|improve this answer
Man i don't want to print out a png from another png.. I need to convert a png to a .jpg without having black patch on it :) – yes123 Mar 15 '11 at 1:30
check the 4 last functions, mainly imagealphablending and imagecopyresampled and imagesavealpha – AbiusX Mar 15 '11 at 1:31
Ok I used them, the result was still with that black patch on it. I did: imagecreatefromstring, imagealphablendin, imagesavealpha and imagejpeg (i don't need a resampled so i didn't use it) – yes123 Mar 15 '11 at 9:44
please take a peek at PHP website for those functions, comments would help you. – AbiusX Mar 15 '11 at 13:49
feedback

Your Answer

 
or
required, but never shown

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