Section 16.9. Adding Transparency


16.9. Adding Transparency

Specifying the part of an image that should be transparent is as simple as picking the color to use as transparent and passing it into the imagecolortransparent( ) function. As the support for transparency in some browsers (notably with Internet Explorer and PNG transparency) is limited, this function is most useful when the transparent image is used as part of a larger image so that the transparency can be seen.

     $image = imagecreatetruecolor(400,400);     $black = imagecolorallocate($image, 0, 0, 0);     imagecolortransparent($image, $black);     /// rest of picture here 

Why JPEGs Don't Support Transparency

JPEGs do not support transparency and will likely never do so. This is because both methods of transparencycolor selection and alpha channelsare unsuitable for the JPEG format.

The first is impossible because JPEGs do not guarantee exact color matching, which means that a color you expect to be transparent may end up not. The second is because alpha channels usually have large blocks of transparency followed by a quick change to non-transparencysomething that JPEG handles very badly, because it relies on smooth changes in colors to compress well.




PHP in a Nutshell
Ubuntu Unleashed
ISBN: 596100671
EAN: 2147483647
Year: 2003
Pages: 249

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net