XImage.Raster
Features
Tech Specs
How-to C#
Pricing


How to convert, export TIFF, PNG, JPG raster image to JBig2 file using C#?

  1. Download XImage.Raster C# imaging library
  2. Install C# library to convert, export TIFF, PNG, JPG raster image to JBig2 file in .NET applications
  3. Step by Step Tutorial










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");