Prior to performing image processing on an image, you must specify whether the entire image, or a section of the image, should be processed.
You can specify whether process the entire image or just a section of the image.
Sample Code (process the whole image):
RasterImage img = new RasterImage(@input.jpeg);
//process the whole image.
ImageProcess processor = new ImageProcess(img);
processor.WaveImage(10,10);
erImage img = new RasterImage(inputFilePath);
//Convert format and save.
img.Save(outputFilePath);
Sample Code (process the image of the specified region):
RasterImage img = new RasterImage(@input.jpeg);
ImageProcess processor = new ImageProcess(img);
//set the area(0,0,100,100) to process
processor.SetArea = new Rectangle(0, 0, 100, 100);
processor.WaveImage(10,10);
//when the specified process is end , must set this flag to true.
processor.AreaProcessEnd = true;