How to C#: Imaging
Using Imaging SDK for C#.NET
Winforms Controls
Image Load
Image Access and Modify
Merge Images
Merge Images
  |  
Home ›› XImage.Raster ›› C# Raster: Merge Images

How to C#: Merge Images


Overview for How to Merge Images



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...
asp.net mvc excel viewer: ASP.NET Excel Viewer in C# Control (MVC & WebForms): view Office Excel document in web browser.
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...
asp.net edit pdf text using c#: ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
asp.net edit pdf image using c#: ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#
asp.net annotate pdf using c#: ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#


Overview



By using the XImage.Raster SDK, you can merge images with different merge type. count pages in pdf without opening c#, c# add text to existing pdf file, download pdf file in mvc, c# convert word to pdf programmatically, how to add header and footer in pdf using c#, open pdf and draw c#.




Steps to Merge Images



Load an image with RasterImage object.


Create an image processor with ImageProcess object.


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


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


In order to acheive the work, please refer to the following steps. convert pdf to word c# open source, convert pdf to tiff in c#, c# pdf highlight text, convert pdf to html c# itextsharp, c# redact pdf, c# convert text to pdf, vb.net pdf to png.




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;


  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. asp.net core open excel file, asp.net core pdf preview, asp.net itextsharp add image to pdf, asp.net pdf editor, asp.net display tiff images, display pdf in iframe mvc, asp.net c# pdf viewer.




Merge Images



Sample Code (merge image):




RasterImage img = new RasterImage(@"F:\input.png");
RasterImage child = new RasterImage(@"F:\input1.png");
ImageProcess process = new ImageProcess(img);
//paste the child image on the img, and the xoffset = 50, yoffset = 100.
process.MergeImage(child, MergeType.Blend, 50, 100);
img.Save(@"C:\output.tif">);