IconExtensionsExtractNearestIcon(Icon, Size, PixelFormat, Boolean) Method
Extracts the nearest icon of specified size and pixel format from an
Icon instance.
Unless the
Icon constructors, this method works as expected.
Namespace: KGySoft.DrawingAssembly: KGySoft.Drawing (in KGySoft.Drawing.dll) Version: 10.0.0-rc.1
public static Icon ExtractNearestIcon(
this Icon icon,
Size size,
PixelFormat pixelFormat,
bool forceUncompressedResult
)
<ExtensionAttribute>
Public Shared Function ExtractNearestIcon (
icon As Icon,
size As Size,
pixelFormat As PixelFormat,
forceUncompressedResult As Boolean
) As Icon
public:
[ExtensionAttribute]
static Icon^ ExtractNearestIcon(
Icon^ icon,
Size size,
PixelFormat pixelFormat,
bool forceUncompressedResult
)
[<ExtensionAttribute>]
static member ExtractNearestIcon :
icon : Icon *
size : Size *
pixelFormat : PixelFormat *
forceUncompressedResult : bool -> Icon
- icon Icon
- The icon that may contain multiple images.
- size Size
- The required icon size to retrieve.
- pixelFormat PixelFormat
- The required pixel format to retrieve
- forceUncompressedResult Boolean
- to force returning an uncompressed icon;
to allow PNG compression, which is supported by Windows Vista and above.
IconAn
Icon instance, which contains only a single image. If no
icon was found with the specified size and format the nearest icon (
size match have preference over
pixelFormat) is returned.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).
On some platforms it may happen that a smaller icon is returned than requested size if the requested icon size is not supported.
If icon contains only unsupported icon sizes, then is returned.
To force a result exactly with the specified size, use the Resize method instead.