Click here to Skip to main content
6,629,885 members and growing! (21,292 online)
Email Password   helpLost your password?
Web Development » ASP.NET Controls » General     Intermediate License: The GNU General Public License (GPL)

ASP.NET PDF Viewer User Control Without Acrobat Reader Installed on Client or Server

By Ron Schuler

ASP.NET PDF document viewer control that does not require any Acrobat product to be installed
VB (VB 7.x, VB 8.0, VB 9.0, VB 6, VB 10), .NET (.NET 2.0), ASP.NET, Dev
Version:6 (See All)
Posted:30 Aug 2009
Updated:17 Sep 2009
Views:21,731
Bookmarked:105 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
17 votes for this article.
Popularity: 5.97 Rating: 4.85 out of 5

1

2

3
2 votes, 11.8%
4
15 votes, 88.2%
5
PDFViewASP

Introduction

This article discusses how to create an ASP.NET PDF Viewer User Control that is not dependent on Acrobat software being installed.

Fundamental Concepts

  1. Get a page count of the PDF document that needs to be viewed to define your page number boundaries (PdfLibNet - XPDF) 
  2. Convert the PDF document (specific page on demand) to a raster image format (PdfLibNet - XPDF)  
  3. Convert the current page to be viewed into a PNG file
  4. Display the PNG file in an image on a web page 

Several utility classes were created or added from others which expose functionality needed from the various helper libraries.

  1. AFPDFLibUtil.vb (contains methods to create Bookmark HTML, Search, get page count, convert PDF to PNG)
  2. ImageUtil.vb (contains methods for image manipulation such as resize, rotation, conversion, etc.)
  3. ASPPDFLib.vb (contains generic wrapper functions that call specific technologies)
  4. PDFViewer.ascx.vb (contains code behind for the PDF Viewer User Control)
  5. PDFViewer.ascx (contains client side HTML/JavaScript for the PDF Viewer User Control)

Using the Code 

ASP Server Configuration Requirements

  • You must give the ASPNET user (IISUSR or ASPNET or Network services user) permission to modify (read/write) the /PDF and /render directories.
  • The DLL PDFLibNet.dll must be available to the page. You might have to register it with the GAC depending on your operating system to make it available to the application.
  • Currently only 32 bit OS is supported.

This project consists of 3 DLLs that must all be in the same directory:

  • PDFLibNET.dll
  • StatefullScrollPanel.dll
  • PDFViewASP.dll

To place a PDF Viewer User Control on a web page:   

<uc1:PDFViewer ID="PDFViewer1" runat="server" /> 

Set the FileName property to view the PDF file in the code behind:

      Dim pdfFileName As String = Request.MapPath("PDF") & "\" & "myPDF.pdf"
      If ImageUtil.IsPDF(pdfFileName) Then
        ErrorLabel.Visible = False
        PDFViewer1.FileName = pdfFileName
      Else
        ErrorLabel.Text = "Only PDF files (*.pdf) are allowed to be viewed."
        ErrorLabel.Visible = True
      End If

The essential part of this solution is extracting the current page to be viewed from a PDF file. Since we are using ASP.NET, I chose to implement a file based solution to avoid memory management issues when trying to persist PDF byte streams for multiple clients. I chose to extract a page from PDF using PDFLibNet and store it to the File System as a PNG image. I chose PNG since it uses ZIP compression which results in a lossless compressed image and small file size.

    'Modified for ASP usage
    Public Shared Function GetPageFromPDF(ByVal filename As String, _
	ByVal destPath As String, ByRef PageNumber As Integer, _
	Optional ByVal DPI As Integer = RENDER_DPI, _
	Optional ByVal Password As String = "", _
	Optional ByVal searchText As String = "", _
	Optional ByVal searchDir As SearchDirection = 0) As String
    GetPageFromPDF = ""
    Dim pdfDoc As New PDFLibNet.PDFWrapper
    pdfDoc.RenderDPI = 72
    pdfDoc.LoadPDF(filename)
    If Not Nothing Is pdfDoc Then
      pdfDoc.CurrentPage = PageNumber
      pdfDoc.SearchCaseSensitive = False
      Dim searchResults As New List(Of PDFLibNet.PDFSearchResult)
      If searchText <> "" Then
        Dim lFound As Integer = 0
        If searchDir = SearchDirection.FromBeginning Then
          lFound = pdfDoc.FindFirst(searchText, _
          	PDFLibNet.PDFSearchOrder.PDFSearchFromdBegin, False, False)
        ElseIf searchDir = SearchDirection.Forwards Then
          lFound = pdfDoc.FindFirst(searchText, _
          	PDFLibNet.PDFSearchOrder.PDFSearchFromCurrent, False, False)
        ElseIf searchDir = SearchDirection.Backwards Then
          lFound = pdfDoc.FindFirst(searchText, _
          	PDFLibNet.PDFSearchOrder.PDFSearchFromCurrent, True, False)
        End If
        If lFound > 0 Then
          If searchDir = SearchDirection.FromBeginning Then
            PageNumber = pdfDoc.SearchResults(0).Page
            searchResults = GetAllSearchResults(filename, searchText, PageNumber)
          ElseIf searchDir = SearchDirection.Forwards Then
            If pdfDoc.SearchResults(0).Page > PageNumber Then
              PageNumber = pdfDoc.SearchResults(0).Page
              searchResults = GetAllSearchResults(filename, searchText, PageNumber)
            Else
              searchResults = SearchForNextText(filename, searchText, _
						PageNumber, searchDir)
              If searchResults.Count > 0 Then
                PageNumber = searchResults(0).Page
              End If
            End If
          ElseIf searchDir = SearchDirection.Backwards Then
            If pdfDoc.SearchResults(0).Page < PageNumber Then
              PageNumber = pdfDoc.SearchResults(0).Page
              searchResults = GetAllSearchResults(filename, searchText, PageNumber)
            Else
              searchResults = SearchForNextText(filename, searchText, _
						PageNumber, searchDir)
              If searchResults.Count > 0 Then
                PageNumber = searchResults(0).Page
              End If
            End If
          End If
        End If
      End If
      Dim outGuid As Guid = Guid.NewGuid()
      Dim output As String = destPath & "\" & outGuid.ToString & ".png"
      Dim pdfPage As PDFLibNet.PDFPage = pdfDoc.Pages(PageNumber)
      Dim bmp As Bitmap = pdfPage.GetBitmap(DPI, True)
      bmp.Save(output, System.Drawing.Imaging.ImageFormat.Png)
      bmp.Dispose()
      GetPageFromPDF = output
      If searchResults.Count > 0 Then
        GetPageFromPDF = HighlightSearchCriteria(output, DPI, searchResults)
      End If
      pdfDoc.Dispose()
    End If
  End Function

In the PDFViewer code, a page number is specified and:

  • The page is loaded from the PDF file and converted to a PNG file.
  • We add the PNG file name to the ASP.NET Cache with an expiration of 5 minutes to ensure that we don't leave rendered images lying around on the server.
  • The ImageUrl is updated with the path to the PNG file.

PDFViewer.ascx.vb

 Private Sub DisplayCurrentPage(Optional ByVal doSearch As Boolean = False)
   'Set how long to wait before deleting the generated PNG file
   Dim expirationDate As DateTime = Now.AddMinutes(5)
   Dim noSlide As TimeSpan = System.Web.Caching.Cache.NoSlidingExpiration
   Dim callBack As New CacheItemRemovedCallback(AddressOf OnCacheRemove)
   ResizePanels()
   CheckPageBounds()
   UpdatePageLabel()
   InitBookmarks()
   Dim destPath As String = Request.MapPath("render")
   Dim indexNum As Integer = (parameterHash("CurrentPageNumber") - 1)
   Dim numRotation As Integer = parameterHash("RotationPage")(indexNum)
   Dim imageLocation As String
   If doSearch = False Then_
     imageLocation = ASPPDFLib.GetPageFromPDF(parameterHash("PDFFileName"), _
     destPath, parameterHash("CurrentPageNumber"), parameterHash("DPI"), _
     parameterHash("Password"), numRotation)
   Else
     imageLocation = ASPPDFLib.GetPageFromPDF(parameterHash("PDFFileName"), destPath _
                                              , parameterHash("CurrentPageNumber") _
                                              , parameterHash("DPI") _
                                              , parameterHash("Password") _
                                              , numRotation, parameterHash("SearchText") _
                                              , parameterHash("SearchDirection") _
                                              )
     UpdatePageLabel()
   End If
   ImageUtil.DeleteFile(parameterHash("CurrentImageFileName"))
   parameterHash("CurrentImageFileName") = imageLocation
   'Add full filename to the Cache with an expiration
   'When the expiration occurs, it will call OnCacheRemove which will delete the file
   Cache.Insert(New Guid().ToString & "_DeleteFile", imageLocation, _
   	Nothing, expirationDate, noSlide, _
   	System.Web.Caching.CacheItemPriority.Default, callBack)
   Dim matchString As String = _
	Request.MapPath("").Replace("\", "\\") ' escape backslashes
   CurrentPageImage.ImageUrl = Regex.Replace(imageLocation, matchString & "\\", "~/")
 End Sub

 Private Sub OnCacheRemove(ByVal key As String, ByVal val As Object, _
  	ByVal reason As CacheItemRemovedReason)
   If Regex.IsMatch(key, "DeleteFile") Then
     ImageUtil.DeleteFile(val)
   End If
 End Sub

ASPPDFLib.vb

    Public Shared Function GetPageFromPDF(ByVal sourceFileName As String _
                                        , ByVal destFolderPath As String _
                                        , ByRef iPageNumber As Integer _
                                        , Optional ByVal DPI As Integer = 0 _
                                        , Optional ByVal password As String = "" _
                                        , Optional ByVal rotations As Integer = 0 _
                                        , Optional ByVal searchText As String = "" _
                                        , Optional ByVal searchDir As Integer = _
                                        	AFPDFLibUtil.SearchDirection.FromBeginning _
                                        ) As String
    GetPageFromPDF = AFPDFLibUtil.GetPageFromPDF(sourceFileName, _
	destFolderPath, iPageNumber, DPI, password, searchText, searchDir)
    ImageUtil.ApplyRotation(GetPageFromPDF, rotations)
  End Function

Points of Interest

This project was made possible due to various open source libraries that others were kind enough to distribute freely. I would like to thank the PDFLibNet developer Antonio Sandoval and Foo Labs (XPDF) for their efforts.

History

  • 1.0 - Initial version
  • 1.1 - Added Search capabilities, reduced DLL dependencies, made PDF subsystem use XPDF only
  • 1.2 - Replaced PDFLibNet.dll to fix incorrect configuration error 0x800736B1
  • 1.3 - Optimized search routines

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPL)

About the Author

Ron Schuler


Member

Occupation: Software Developer
Location: United States United States

Other popular ASP.NET Controls articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 65 (Total in Forum: 65) (Refresh)FirstPrevNext
GeneralPowerpoint's files? PinmemberMember 47634968:05 18 Nov '09  
QuestionViewing Query string inside File Upload control PinmemberThunderweaver23:12 15 Nov '09  
AnswerRe: Viewing Query string inside File Upload control PinmemberRon Schuler2:24 16 Nov '09  
QuestionRe: Viewing Query string inside File Upload control PinmemberThunderweaver2:34 16 Nov '09  
Generalnot working when hosted PinmemberMember 40265434:15 12 Nov '09  
GeneralRe: not working when hosted PinmemberRon Schuler9:33 12 Nov '09  
GeneralRe: not working when hosted- (Solved) PinmemberMember 402654320:21 12 Nov '09  
GeneralGet information from DataBase. PinmemberMember 476349611:38 9 Nov '09  
GeneralRe: Get information from DataBase. PinmemberRon Schuler2:33 10 Nov '09  
GeneralRe: Get information from DataBase. PinmemberMember 47634968:04 11 Nov '09  
GeneralRe: Get information from DataBase. PinmemberRon Schuler9:54 11 Nov '09  
GeneralQuery about code compatibility in c#.net Pinmemberpatel_jay_405:48 7 Nov '09  
GeneralRe: Query about code compatibility in c#.net PinmemberRon Schuler7:25 7 Nov '09  
GeneralRe: Query about code compatibility in c#.net Pinmemberpatel_jay_4010:28 7 Nov '09  
GeneralRe: Query about code compatibility in c#.net PinmemberRon Schuler16:05 7 Nov '09  
GeneralWorks on my XP machine but not a windows 2000 server Pinmemberdcopp16:52 30 Oct '09  
GeneralRe: Works on my XP machine but not a windows 2000 server PinmemberRon Schuler18:32 30 Oct '09  
GeneralRe: Works on my XP machine but not a windows 2000 server Pinmemberdcopp5:03 4 Nov '09  
GeneralRe: Works on my XP machine but not a windows 2000 server PinmemberRon Schuler7:27 7 Nov '09  
GeneralRe: Works on my XP machine but not a windows 2000 server Pinmemberdcopp8:11 9 Nov '09  
GeneralThanks a loot PinmemberMember 40265430:57 30 Oct '09  
GeneralRead Byte[] file in pdfviewer Pinmemberhassanbwer20:36 29 Oct '09  
GeneralDLL performance PinmemberTopCoderLau16:55 20 Oct '09  
GeneralRe: DLL performance PinmemberRon Schuler17:19 20 Oct '09  
GeneralHow can i display a PDF file in internet explorer as readonly and no other features available Pinmemberraffyc_7621:58 11 Oct '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 17 Sep 2009
Editor: Deeksha Shenoy
Copyright 2009 by Ron Schuler
Everything else Copyright © CodeProject, 1999-2009
Web22 | Advertise on the Code Project