IconExtensionsExtractBitmaps(Icon, Size, Boolean) Method
Extracts every image of specified size from an
Icon instance.
Namespace: KGySoft.DrawingAssembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 10.1.0
public static Bitmap[] ExtractBitmaps(
this Icon icon,
Size size,
bool keepOriginalFormat = false
)
<ExtensionAttribute>
Public Shared Function ExtractBitmaps (
icon As Icon,
size As Size,
Optional keepOriginalFormat As Boolean = false
) As Bitmap()
public:
[ExtensionAttribute]
static array<Bitmap^>^ ExtractBitmaps(
Icon^ icon,
Size size,
bool keepOriginalFormat = false
)
[<ExtensionAttribute>]
static member ExtractBitmaps :
icon : Icon *
size : Size *
?keepOriginalFormat : bool
(* Defaults:
let _keepOriginalFormat = defaultArg keepOriginalFormat false
*)
-> Bitmap[]
- icon Icon
- The icon that may contain multiple images.
- size Size
- The required icon size to retrieve.
- keepOriginalFormat Boolean (Optional)
- If , returns the actual icon images with their underlying pixel format, without applying the transparency mask.
Possible transparent pixels of non-32 bpp ARGB icon images will be opaque. If , always returns 32 bpp images with transparency. This parameter is optional.
Default value: .
BitmapAn array of
Bitmap instances, which were extracted from the
icon.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).