Returns the alpha channel information for a bitmap image.
Original signature is 'CGImageAlphaInfo CGImageGetAlphaInfo ( CGImageRef image );'
Available in Mac OS X version 10.0 and later.

C# | Visual Basic | Visual C++ |
public static CGImageAlphaInfo GetAlphaInfo( IntPtr image )
Public Shared Function GetAlphaInfo ( _ image As IntPtr _ ) As CGImageAlphaInfo
public: static CGImageAlphaInfo GetAlphaInfo( IntPtr image )

- image (IntPtr)
- MISSING

A CGImageAlphaInfo constant that specifies (1) whether the bitmap contains an alpha channel, (2) where the alpha bits are located in the image data, and (3) whether the alpha value is premultiplied. For possible values, see “Constants.” The function returns kCGImageAlphaNone if the image parameter refers to an image mask.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)