|
I tried to convert multipage tif to multipage jbig but I could not only one page was converted (total page must be 4). Does anyone know how can done this?
Does jbig support multipage?
My code is ;
CodecsImageInfo imageInformation = codecs.GetInformation(@"c:\x.TIF", true);
codecs.Convert( @"c:\x.TIF", @"c:\y.jbg", RasterImageFormat.Jbig, image.Width, image.Height, 1, imageInformation);
|