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

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


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



vb.net itextsharp pdfreader, c# extract images from pdf, count pages in pdf without opening c#, itextsharp add image to existing pdf vb.net, pdf first page to image c#, c# populate pdf form fields.

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 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.
asp.net view tiff images: ASP.NET Tiff Viewer: view, annotate multipage Tiff images in ASP.NET MVC, WebForms using C# Control
c# asp.net pdf editor: EdgePDF: ASP.NET PDF Editor Web Control: Online view, annotate, redact, edit, process, convert PDF documents


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; vb net pdf compress and resize free, c# code to compress pdf file, c# pdf stamper, c# convert tiff to pdf, c# draw rectangle in pdf, convert image to pdf pdfsharp c#, generate pdf from xml c#.


  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 JBig2



Sample Code (convert single frame image to JBig2):




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




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




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