2011-03-08 4 views
0

Possible en double:
Combining images in PHP while retaining transparencyLa combinaison des images PNG tout en préservant la transparence

Jetez un oeil ici: http://tyilo.jbusers.com/PNG/progress.php?l=100&p=20

Je veux enlever le blanc-thingy à la fin de la partie bleue, mais j'ai essayé beaucoup de choses différentes qui n'ont pas fonctionné.

Si nécessaire, le PNGs se trouvent dans le dossier http://tyilo.jbusers.com/PNG/ (http://tyilo.jbusers.com/PNG/Empty.png)

header('Content-type: image/png'); 
echo imagepng(progressbar($_GET['l'], $_GET['p'])); 
function progressbar($length, $percentage) 
{ 
$length = round($length/2) * 2; 
$percentage = min(100, max(0, $percentage)); 
if($length > 0) 
{ 
    $bar = imagecreate($length, 14); 
    $empty = imagecreatefrompng('Empty.png'); 
    $fill = imagecreatefrompng('Fill.png'); 
    $lempty = imagecreatefrompng('LeftEmpty.png'); 
    $lfill = imagecreatefrompng('LeftFill.png'); 
    $rempty = imagecreatefrompng('RightEmpty.png'); 
    $rfill = imagecreatefrompng('RightFill.png'); 
    $emptycaplength = min(7, $length/2); //5 
    imagecopy($bar, $lempty, 0, 0, 0, 0, $emptycaplength, 14); 
    imagecopy($bar, $rempty, $length - $emptycaplength, 0, 7 - $emptycaplength, 0, $emptycaplength, 14); 
    if($length > 14) 
    { 
     imagecopyresized($bar, $empty, 7, 0, 0, 0, $length - 14, 14, 1, 14); 
    } 
    $filllength = round(($length * ($percentage/100))/2) * 2; 
    $fillcaplength = min(7, $filllength/2); 
    imagecopy($bar, $lfill, 0, 0, 0, 0, $fillcaplength, 14); 
    imagecopy($bar, $rfill, $filllength - $fillcaplength, 0, 7 - $fillcaplength, 0, $fillcaplength, 14); 
    if($filllength > 14) 
    { 
     imagecopyresized($bar, $fill, 7, 0, 0, 0, $filllength - 14, 14, 1, 14); 
    } 
    return $bar; 
} 
else 
{ 
    return false; 
} 
} 

Répondre

0

Avez-vous essayé la fonction de GD pour la transparence?

imagealphablending($im,FALSE); 
imagesavealpha($im,TRUE); 
+0

Est-ce que je devrais les placer? – Tyilo

+0

@Tyilo: après chaque png ** créations **, vous souhaitez conserver la transparence lors de la fusion. – Shikiryu

+0

Ne fonctionne pas soz – Tyilo

Questions connexes