Jump to content

imagerotate transparency


The Little Guy

Recommended Posts

I would like to select a color that isn't in an image, any thoughts on the best way? Maybe this isn't even the best way to do this.

 

I am using imagerotate, and for the 3rd parameter, I would like the uncovered area to  be transparent. I have done this, but I had to use a color then make every color in the image of that color transparent. so, either what is the best way:

 

A. Is there a good way to do this?

B. save every pixel color in an array then loop though the array testing colors that are not in the array and setting that as the transparent value.

C. Other. What?

Link to comment
Share on other sites

Just use a color for the background that has it's opacity set to 127.

 

$img = ImageCreateFromPNG('blah');
$transparent = imagecolorallocatealpha($img, 0, 0, 0, 127);
imagerotate($img, 90, $transparent);

ImageSaveAlpha($img, true);
header('Content-type: image/png');
ImagePNG($img);

Link to comment
Share on other sites

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.