|
ImageConvertColor8bppToGrayscale8bpp Method
|
Converts a 8-bpp color image into a 8-bpp grayscale image, setting its color
palette to grayscale and replacing palette indices with their grayscale values.
Namespace:
Accord.Imaging
Assembly:
Accord.Imaging (in Accord.Imaging.dll) Version: 3.8.0
Syntaxpublic static void ConvertColor8bppToGrayscale8bpp(
this Bitmap bitmap
)
<ExtensionAttribute>
Public Shared Sub ConvertColor8bppToGrayscale8bpp (
bitmap As Bitmap
)
Request Example
View SourceParameters
- bitmap
- Type: System.DrawingBitmap
The bitmap to be converted.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Bitmap. 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