C#
VB
Java
Objective-C
WinRT C#
C++
Flips the image region (top to bottom).
public void FlipRegion() Public Sub FlipRegion() public void FlipRegion() - (BOOL)flipRegion:(NSError **)error public void flipRegion() function Leadtools.RasterImage.FlipRegion() public:void FlipRegion();
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Core;using Leadtools.ImageProcessing.Color;using Leadtools.Dicom;using Leadtools.Drawing;using Leadtools.Controls;using LeadtoolsExamples.Common;using Leadtools.Svg;public void FlipRegionExample(){RasterCodecs codecs = new RasterCodecs();string srcFileName = Path.Combine(ImagesPath.Path, "Image1.cmp");string destFileName1 = Path.Combine(ImagesPath.Path, "Image1_OriginalRegion.bmp");string destFileName2 = Path.Combine(ImagesPath.Path, "Image1_OffsetRegion.bmp");string destFileName3 = Path.Combine(ImagesPath.Path, "Image1_FlipRegion.bmp");string destFileName4 = Path.Combine(ImagesPath.Path, "Image1_ReverseRegion.bmp");// Load the imageRasterImage image = codecs.Load(srcFileName);// Add an ellipse inside a rectangle region to the imageLeadRect rc = new LeadRect(0, 0, image.Width / 3, image.Height / 6);image.AddEllipseToRegion(null, rc, RasterRegionCombineMode.Set);// Clone this image and run an image proccesing command on itInvertCommand command = new InvertCommand();RasterImage imageWithRegion = image.Clone();command.Run(imageWithRegion);codecs.Save(imageWithRegion, destFileName1, RasterImageFormat.Bmp, 24);imageWithRegion.Dispose();// Offset the regionimage.OffsetRegion(100, 50);imageWithRegion = image.Clone();command.Run(imageWithRegion);codecs.Save(imageWithRegion, destFileName2, RasterImageFormat.Bmp, 24);imageWithRegion.Dispose();// Flip the regionimage.FlipRegion();imageWithRegion = image.Clone();command.Run(imageWithRegion);codecs.Save(imageWithRegion, destFileName3, RasterImageFormat.Bmp, 24);imageWithRegion.Dispose();// Reverse the regionimage.ReverseRegion();imageWithRegion = image.Clone();command.Run(imageWithRegion);codecs.Save(imageWithRegion, destFileName4, RasterImageFormat.Bmp, 24);imageWithRegion.Dispose();image.Dispose();codecs.Dispose();}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.CoreImports Leadtools.ImageProcessing.ColorImports Leadtools.ControlsImports Leadtools.DicomImports Leadtools.DrawingImports Leadtools.SvgPublic Sub FlipRegionExample()Dim codecs As RasterCodecs = New RasterCodecs()Dim srcFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp")Dim destFileName1 As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1_OriginalRegion.bmp")Dim destFileName2 As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1_OffsetRegion.bmp")Dim destFileName3 As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1_FlipRegion.bmp")Dim destFileName4 As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1_ReverseRegion.bmp")' Load the imageDim image As RasterImage = codecs.Load(srcFileName)' Add an ellipse inside a rectangle region to the imageDim rc As LeadRect = New LeadRect(0, 0, image.Width \ 3, image.Height \ 6)image.AddEllipseToRegion(Nothing, rc, RasterRegionCombineMode.Set)' Clone this image and run an image proccesing command on itDim command As InvertCommand = New InvertCommand()Dim imageWithRegion As RasterImage = image.Clone()command.Run(imageWithRegion)codecs.Save(imageWithRegion, destFileName1, RasterImageFormat.Bmp, 24)imageWithRegion.Dispose()' Offset the regionimage.OffsetRegion(100, 50)imageWithRegion = image.Clone()command.Run(imageWithRegion)codecs.Save(imageWithRegion, destFileName2, RasterImageFormat.Bmp, 24)imageWithRegion.Dispose()' Flip the regionimage.FlipRegion()imageWithRegion = image.Clone()command.Run(imageWithRegion)codecs.Save(imageWithRegion, destFileName3, RasterImageFormat.Bmp, 24)imageWithRegion.Dispose()' Reverse the regionimage.ReverseRegion()imageWithRegion = image.Clone()command.Run(imageWithRegion)codecs.Save(imageWithRegion, destFileName4, RasterImageFormat.Bmp, 24)imageWithRegion.Dispose()image.Dispose()codecs.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Codecs;using Leadtools.Dicom;using Leadtools.ImageProcessing;using Leadtools.ImageProcessing.Core;using Leadtools.ImageProcessing.Color;using Leadtools.Examples;using Leadtools.Windows.Media;public void FlipRegionExample(RasterImage image, Stream destStream1, Stream destStream2, Stream destStream3, Stream destStream4){// Add a rectangle region to the imageLeadRect rc = new LeadRect(0, 0, image.Width / 3, image.Height / 6);image.AddRectangleToRegion(null, rc, RasterRegionCombineMode.Set);using (IsolatedStorageFile isf = IsolatedStorageFile.GetUserStoreForApplication()){// Clone this image and run an image proccesing command on itInvertCommand command = new InvertCommand();RasterCodecs codecs = new RasterCodecs();RasterImage imageWithRegion = image.Clone();command.Run(imageWithRegion);codecs.Save(image, destStream1, RasterImageFormat.Bmp, 0);imageWithRegion.Dispose();// Offset the regionimage.OffsetRegion(100, 50);imageWithRegion = image.Clone();command.Run(imageWithRegion);codecs.Save(image, destStream2, RasterImageFormat.Bmp, 0);imageWithRegion.Dispose();// Flip the regionimage.FlipRegion();imageWithRegion = image.Clone();command.Run(imageWithRegion);codecs.Save(image, destStream3, RasterImageFormat.Bmp, 0);imageWithRegion.Dispose();// Reverse the regionimage.ReverseRegion();imageWithRegion = image.Clone();command.Run(imageWithRegion);codecs.Save(image, destStream4, RasterImageFormat.Bmp, 0);imageWithRegion.Dispose();image.Dispose();}}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.DicomImports Leadtools.ImageProcessingImports Leadtools.ImageProcessing.CoreImports Leadtools.ImageProcessing.ColorImports Leadtools.Windows.MediaPublic Sub FlipRegionExample(ByVal image As RasterImage, ByVal destStream1 As Stream, ByVal destStream2 As Stream, ByVal destStream3 As Stream, ByVal destStream4 As Stream)' Add a rectangle region to the imageDim rc As LeadRect = New LeadRect(0, 0, image.Width / 3, image.Height / 6)image.AddRectangleToRegion(Nothing, rc, RasterRegionCombineMode.Set)Using isf As IsolatedStorageFile = IsolatedStorageFile.GetUserStoreForApplication()' Clone this image and run an image proccesing command on itDim command As InvertCommand = New InvertCommand()Dim codecs As RasterCodecs = New RasterCodecs()Dim imageWithRegion As RasterImage = image.Clone()command.Run(imageWithRegion)codecs.Save(image, destStream1, RasterImageFormat.Bmp, 0)imageWithRegion.Dispose()' Offset the regionimage.OffsetRegion(100, 50)imageWithRegion = image.Clone()command.Run(imageWithRegion)codecs.Save(image, destStream2, RasterImageFormat.Bmp, 0)imageWithRegion.Dispose()' Flip the regionimage.FlipRegion()imageWithRegion = image.Clone()command.Run(imageWithRegion)codecs.Save(image, destStream3, RasterImageFormat.Bmp, 0)imageWithRegion.Dispose()' Reverse the regionimage.ReverseRegion()imageWithRegion = image.Clone()command.Run(imageWithRegion)codecs.Save(image, destStream4, RasterImageFormat.Bmp, 0)imageWithRegion.Dispose()image.Dispose()End UsingEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
