Flip example for Delphi

This example flips the bitmap and repaints the image.

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