PM > Install-Package XDoc.PDF

How to Start Convert PDF Work with PDF Modules PDF Document PDF Pages Text Image Graph & Path Annotation, Markup & Drawing Redaction Security Digital Signature Forms Watermark Bookmark Link File Attachment File Metadata Printing Work with Other SDKs Barcode read Barcode create OCR Twain

PDF VB.NET Library
How to Generate Thumbnail for PDF in VB.NET


Support Thumbnail Generation with Various Options for Quick PDF Navigation in VB.NET



In this VB.NET tutorial, you learn how to use XDoc.PDF thumbnail Visual Basic .NET library to

How to create thumbnail image from PDF file using VB.NET

  1. Download XDoc.PDF thumbnail image converter VB.NET library
  2. Install VB.NET library to create thumbnail images from PDF document
  3. Step by Step Tutorial










  • Advanced VB.NET PDF thumbnail generator control for Visual Studio .NET
  • Able to create thumbnails in .NET WinForms and ASP.NET webpage
  • Quick create navigation thumbnail from PDF page or images in VB.NET class program
  • Support .NET WinForms, ASP.NET MVC in IIS, ASP.NET Ajax, Azure cloud service, DNN (DotNetNuke), SharePoint
  • Create thumbnails from multiple image formats, such as jpeg, png, gif, bmp, etc
  • Free PDF SDK library built on .NET framework 2.0
  • Online Visual Basic .NET source code is available


RasterEdge XDoc.PDF for .NET allows users to navigate through PDF document in VB.NET application. Generating thumbnail for PDF document is an easy work and gives quick access to PDF page and file, or even hyperlinks. This page shows you with demo code to tell how to create a thumbnail in VB.NET program, please see example as below.

pdf viewer in asp.net core mvc, asp.net display excel spreadsheet, asp net replace text fro pdf free, asp.net pdf editor component, pdf preview in asp.net c#, how to display pdf file in asp.net c#, asp.net open word document.







How to VB.NET: Create Thumbnail for PDF


This is a  VB.NET sample code for PDF thumbnail creation. As you see, you are allowed to define and control the size of PDF thumbnail.


Dim inputFilePath As String = Program.RootPath + "\\" + "1.pdf"
Dim doc As PDFDocument = New PDFDocument(inputFilePath)
Dim page As PDFPage = doc.GetPage(0)

' Define the size of the thumbnail.
Dim thumbnailSize As Size = New Size(80, 100)

' Create the thumbnail.
Dim thumbnail As Bitmap = page.ConvertToImage(thumbnailSize)

' Do something ...