FxGrayscale Method (GdPictureImaging)
Performs grayscale effect on a GdPicture image or on an area of a GdPicture image defined by SetROI()
method.
'Declaration
Public Function FxGrayscale( _
ByVal As Integer _
) As GdPictureStatus
Parameters
- ImageID
- GdPicture image identifier.
Return Value
A member of the GdPictureStatus enumeration.
Performing a grayscale effect on a GdPicture image.
using (GdPictureImaging gdpictureImaging = new GdPictureImaging())
{
// LoadInMemory parameter is set to true in order to be able to update the input file.
int imageID = gdpictureImaging.CreateGdPictureImageFromFile("image.jpg", true);
// Convert an image to grayscale.
gdpictureImaging.FxGrayscale(imageID);
gdpictureImaging.SaveAsJPEG(imageID, "image.jpg");
gdpictureImaging.ReleaseGdPictureImage(imageID);
}