Click here to Skip to main content
Click here to Skip to main content

Counting PDF Pages using Regular Expressions

By , 11 Jul 2006
 

Introduction

During one of my .NET projects working with Adobe PDF files, I encountered the need to simply retrieve the page count of a specific file. I did not need to manipulate the PDF at all so buying a .NET component for this task sounded a little inconvenient.

After a few hours of researching for an easy solution, I found out that the old regular expressions might hold the answer.

Opening the PDF in Notepad, I noticed that for each page in the file there is a specific character sequence: "/Type /Page" (depending on the PDF version with or without the space between the two words). So, all we need to do is to count how many times this sequence repeats in the file.

Getting It Done !

First, we need to open the PDF file using a FileStream and read the contents as a string using a StreamReader.

FileStream fs = new FileStream(@"c:\a.pdf", FileMode.Open, FileAccess.Read);
StreamReader r = new StreamReader(fs);
string pdfText = r.ReadToEnd();

Once we have the PDF text, all we need to do is to create the regular expression and count the matches.

Regex rx1 = new Regex(@"/Type\s*/Page[^s]");
MatchCollection matches = rx1.Matches(pdfText);
MessageBox.Show("The PDF file has " + matches.Count.ToString() + " page(s).";

Voila!

History

  • 11th July, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Vicente Angotti
Web Developer
United States United States
Member
Vicente Angotti has been working as a software developer for more than 12 years and he is currently an IT project manager for a Federal U.S. Government Agency.
Some of his recent projects include TCP/IP communications, Asynchronous Threading, Image Manipulation and VLDB Design using .NET.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralEasier Way To Get PDF Page Count.memberSean51506 May '07 - 3:19 
If you are just searching for the page count, you could use the below.
 
Each PDF file consists of a file header
 
obtain the key /N ## (## = Pages)
Example Using vb.net
 
Function ObtainPageCount(ByVal Filename As String) As String
FileOpen(1, Filename, OpenMode.Input)
Dim LineOfText As String = Nothing
Dim PageCount As String
Do
LineOfText = LineInput(1)
If LineOfText.StartsWith("/N") Then
PageCount = LineOfText.Replace("/N", "")
PageCount = PageCount.Replace(" ", "")
Exit Do
End If
Loop Until EOF(1)
FileClose(1)
Return PageCount
End Function
 
I found this to be extremly fast even with large files
 
Thanks
 
Wal.
GeneralRe: Easier Way To Get PDF Page Count. PinmemberMember 292057023 Jan '09 - 6:03 
This looks accurate for now and it's fast too.. ThanksCool | :cool:

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 11 Jul 2006
Article Copyright 2006 by Vicente Angotti
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid