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

C# Raster - Convert Image to JPEG in C#.NET


Online C# Guide for Converting Image to JPEG in .NET Application



vb.net itextsharp convert pdf to image, read text from pdf c#, vb.net barcode scanner programming, export to pdf in mvc 4 razor, find and replace text in pdf using c#, c# pdf image preview.

Related .net document control helps:
asp.net edit pdf image using c#: ASP.NET PDF Image Edit Control: online insert, edit PDF images in C#
c# asp.net dicom viewer: ASP.NET Dicom Document Viewer Control: view, annotate dicom imaging files online in ASP.NET
asp.net edit pdf text using c#: ASP.NET PDF Text Edit Control: online edit PDF text content using C# ASP.NET
asp.net annotate pdf using c#: ASP.NET Annotate PDF Control: annotate, comment, markup PDF document online using ASP.NET C#
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 excel viewer: ASP.NET Excel Viewer in C# Control (MVC & WebForms): view Office Excel document in web browser.
c# asp.net powerpoint viewer: ASP.NET PowerPoint Document Viewer Control (MVC & WebForms): view ppt, pptx files online in C# using ASP.NET


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; c# change pdf page size, c# draw rectangle in pdf, split pdf using c#, c# rotate pdf, vb.net extract text from pdf, convert pdf to svg c#, vb.net convert pdf to text file.


  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.




Convert RasterImage to JPEG



Sample Code (convert single frame image to JPEG):




ConvertHandler.Convert("input.png", @"output.jpeg");




Sample Code (convert multi-frame image to JPEG):




RasterImage img = new RasterImage("input.tiff");
img.Save(@"output.jpeg");