Sharpen example for Delphi

This example increases the sharpness of the bitmap and redisplays the image.

var
   sRet: Smallint;
   RasterProc: LEADRasterProcess;
begin
   RasterProc:= CreateComObject(CLASS_LEADRasterProcess) as LEADRasterProcess;
   RasterProc.Sharpen (LEADRasterView1.Raster, 100);
   LEADRasterView1.ForceRepaint (sRet);
end;