Jump to content

imagecopymerge() transparency issue?


kernelgpf

Recommended Posts

With my script, I'm layering images upon eachother, and one of the first layered images is layered with a transparency level of "70", and the images afterward have a t. rate of "100". But the rate of "70" first is messing up the other images- how can I fix this?

 

if($row[sex] == "female"){

  $background = imagecreatefromgif("$v/Etc/fairypics/femalefairyfinal.gif"); 

}
else{
$background=imagecreatefromgif("$v/Etc/fairypics/malefairyfinal.gif");
}


$insert = imagecreatefromgif("$v/Etc/fairypics/skincolors/$row[skincolor]$row[sex].gif"); 

imagecolortransparent($insert,imagecolorat($insert,0,0));
  imagecopymerge($background,$insert,0,0,0,0,400,400,70); //here's the rate of 70 that's messing everything up!


$insert = imagecreatefromgif("$v/Etc/fairypics/eyecolors/$row[eyecolor]$row[sex]eyes.gif"); 

imagecolortransparent($insert,imagecolorat($insert,0,0));
  imagecopymerge($background,$insert,0,0,0,0,400,400,100); 

$insert = imagecreatefromgif("$v/Items/fairythings/$row[sex]hair/$row[sex]$row[haircolor]$row[hairstyle].gif"); 

imagecolortransparent($insert,imagecolorat($insert,0,0));
  imagecopymerge($background,$insert,0,0,0,0,400,400,100); 

 

That rate of 70 is messing everything up.. it has to be 70, though. If I set it to 100, the following layered images look correct, but that layered image that should be 70 doesn't look right- I tried to set the transparency rate in Photoshop, but when I saved it as a .gif, it removed my transperency levels.

 

Thanks for any help!

 

-Alyssa

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.