Convert PDF to TIFF image in C# and Visual Basic .NET with PDF Renderer SDK - ByteScout
Announcement
Our ByteScout SDK products are sunsetting as we focus on expanding new solutions.
Learn More Open modal
Close modal
Announcement Important Update
ByteScout SDK Sunsetting Notice
Our ByteScout SDK products are sunsetting as we focus on our new & improved solutions. Thank you for being part of our journey, and we look forward to supporting you in this next chapter!

Convert PDF to TIFF image in C# and Visual Basic .NET with PDF Renderer SDK

  • Home
  • /
  • Articles
  • /
  • Convert PDF to TIFF image in C# and Visual Basic .NET with PDF Renderer SDK

The scripts below demonstrate how to render PDF to TIFF image in C# and Visual Basic .NET using Bytescout PDF Renderer SDK.

C#

using System;

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 first page of the document to TIFF image file.
				renderer.RenderPageToFile(i, RasterOutputFormat.TIFF, "image" + i + ".tif");
			}

			// Open the first output file in default image viewer.
			System.Diagnostics.Process.Start("image0.tif");
		}
	}
}
&#91;/vb&#93;

<p><strong>VB.NET</strong></p>
[vb]Imports Bytescout.PDFRenderer


Class Program
	Friend Shared Sub Main(args As String())

        ' Create an instance of Bytescout.PDFRenderer.RasterRenderer object and register it.
		Dim renderer As New RasterRenderer()
		renderer.RegistrationName = "demo"
		renderer.RegistrationKey = "demo"

		' Load PDF document.
		renderer.LoadDocumentFromFile("multipage.pdf")

		For i As Integer = 0 To renderer.GetPageCount() - 1
            ' Render first page of the document to TIFF image file.
            renderer.RenderPageToFile(i, RasterOutputFormat.TIFF, "image" & i & ".tif")
		Next

		' Open the first output file in default image viewer.
        System.Diagnostics.Process.Start("image0.tif")
	End Sub
End Class

Tutorials:

prev
next