Free Trial
Web API version
Licensing
Request A Quote
HAVE QUESTIONS OR NEED HELP? SUBMIT THE SUPPORT REQUEST FORM or write email to SUPPORT@BYTESCOUT.COM
Convert PDF To TIFF | C#
Program.cs:
C#
using System; using System.Diagnostics; using Bytescout.PDFRenderer; namespace PDF2TIFF { class Program { static void Main(string[] args) { // Create an instance of Bytescout.PDFRenderer.RasterRenderer object and register it RasterRenderer renderer = new RasterRenderer(); renderer.RegistrationName = "demo"; renderer.RegistrationKey = "demo"; // Load PDF document renderer.LoadDocumentFromFile("multipage.pdf"); for (int i = 0; i < renderer.GetPageCount(); i++) { // Render document page to TIFF images renderer.Save("image" + i + ".tif", RasterImageFormat.TIFF, i, 96, new RenderingOptions() { // select TIFF compression TIFFCompression = TIFFCompression.LZW }); } // Cleanup renderer.Dispose(); // Open result document in default associated application (for demo purpose) ProcessStartInfo processStartInfo = new ProcessStartInfo("image0.tif"); processStartInfo.UseShellExecute = true; Process.Start(processStartInfo); } } }