IconExtensionsExtractBitmaps Method (Icon, PixelFormat, Boolean) | KGy SOFT Drawing Libraries Help |
Extracts every image of specified pixel format from an Icon instance.
Namespace: KGySoft.Drawing
Assembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 4.6.1
Syntax
public static Bitmap[] ExtractBitmaps( this Icon icon, PixelFormat pixelFormat, bool keepOriginalFormat = false )
<ExtensionAttribute> Public Shared Function ExtractBitmaps ( icon As Icon, pixelFormat As PixelFormat, Optional keepOriginalFormat As Boolean = false ) As Bitmap()
public: [ExtensionAttribute] static array<Bitmap^>^ ExtractBitmaps( Icon^ icon, PixelFormat pixelFormat, bool keepOriginalFormat = false )
[<ExtensionAttribute>] static member ExtractBitmaps : icon : Icon * pixelFormat : PixelFormat * ?keepOriginalFormat : bool (* Defaults: let _keepOriginalFormat = defaultArg keepOriginalFormat false *) -> Bitmap[]
Parameters
- icon
- Type: System.DrawingIcon
The icon that may contain multiple images. - pixelFormat
- Type: System.Drawing.ImagingPixelFormat
The required pixel format to retrieve - keepOriginalFormat (Optional)
- Type: SystemBoolean
If , keeps the original image format stored in the icon. Possible transparent pixels of non-32 bpp ARGB formats may be black. If , always returns 32 bpp images with transparency. This parameter is optional.
Default value: .
Return Value
Type: BitmapAn array of Bitmap instances, which were extracted from the icon.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Icon. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).See Also