How to C#: Imaging
Using Imaging SDK for C#.NET
Winforms Controls
Image Load
Image Access and Modify
Geometry: Flop/Mirror
Geometry: Flop/Mirror
  |  
Home ›› XImage.Raster ›› C# Raster: Flop or Mirror Image

How to C#: Flop or Mirror Image


Guide for How to Flop or Mirror Image


Related .net document control helps:
c# asp.net word document viewer: ASP.NET Office Word Document Viewer: view Word doc files online using C# in ASP.NET MVC web applications
c# asp.net mvc document viewer: ASP.NET Document Viewer using C#: Open, View, Annotate, Redact, Convert document files in ASP.NET using C#, HTML5, JQuer...
c# asp.net image viewer: ASP.NET Image Viewer Control(MVC & WebForms): view, annotate, redact, convert image files in html, JQuery
asp.net edit pdf page using c#: ASP.NET PDF Pages Edit Control: add, remove, sort, replace PDF pages online using C#
asp.net edit pdf text using c#: ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
asp.net pdf document viewer c#: ASP.NET PDF Document Viewer in C#: open, display, view, annotate, redact Adobe PDF files online in ASP.NET MVC & WebForm...
c# asp.net dicom viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET



Steps to Flop image



Load an image with RasterImage object.


Create an image processor with ImageProcess object.


Call the method FlopImage of ImageProcess object to complete the task flopping image.


Save the flopped image to an image file on the disk.


In order to acheive the work, please refer to the following steps. embed pdf in mvc view, vb.net pdf library free, vb.net pdf text extract, best free pdf library c#, how to connect barcode scanner to visual basic 2010, c# merge multi page tiff.




Install XImage.Raster in C# Project



Add necessary references to your C#.NET project. Right-click the project and select "Add Reference..." to locate and add the following DLLs as project references; itextsharp add image to existing pdf vb.net, c# pdf add bookmark, c# itextsharp preview pdf, c# extract images from pdf, vb.net pdf to word, c# pdf extract pages, c# draw pdf.


  RasterEdge.Imaging.Basic.dll


  RasterEdge.XImage.Raster.Core.dll


  RasterEdge.XImage.Raster.dll


Use corresponding namespaces;


  using RasterEdge.XImage.Raster;


Note: When you get the error "Could not load file or assembly 'RasterEdge.Imaging.Basic' or any other assembly or one of its dependencies. An attempt to load a program with an incorrect format", please check your configure as follows:

       

       If you are using x64 libraries/dlls, Right click the project -> Properties -> Build -> Platform target: x64.

       

       If using x86, the platform target should be x86.




How to Flop Image using C#.NET



By using the XImage.Raster SDK, you can flip the current image horizontally.


Sample Code (flop current image): free asp. net mvc pdf viewer, asp.net multipage tiff viewer, asp.net mvc pdf editor, free pdf preview in asp net c#, asp.net pdf viewer control, how to add header and footer in pdf using itextsharp in asp.net, asp.net display word document in browser.




RasterImage img = new RasterImage(@"F:\input.tif");
ImageProcess process = new ImageProcess(img);
//horizontally flops the image. 
process.FlopImage();
//If the image has multiple frames,
// it will only flop the second page of the input tif
process.FlopImage(1);
img.Save(@"F:\input.tif");