Click here to Skip to main content
Licence CPOL
First Posted 14 Dec 2009
Views 12,422
Downloads 742
Bookmarked 21 times

PDF To HTML SlideShow

By | 14 Dec 2009 | Article
Generate a simple PDF file into an HTML image SlideShow

Introduction

I created a tool that converts a simple PDF page into an HTML slide show page. This tool uses Acrobat reader Professional DLL and it will slice the PDF into JPG images, and the results will be displayed in a simple HTML slide show.

Using the Code

The form contains 2 the source PDF file and the destination folder where the HTML slide show will be generated. We first select the PDF, then start parsing the PDF to check the number of pages, and prepare the destination folder.

string path = textBox1.Text;
string folder = openFileDialog1.SafeFileName.Replace(".pdf", "");
string destination = textBox2.Text + @"\" + folder;

//create the new directory for the new FlipBook
System.IO.Directory.CreateDirectory(destination);
System.IO.Directory.CreateDirectory(destination + @"\Pages"); 
Acrobat.AcroPDDoc pdf = new Acrobat.AcroPDDoc();
Acrobat.AcroPDPage pdfPage;
Acrobat.AcroPoint pdfRectTemp;
Acrobat.AcroRect pdfRect;

pdf.Open(path);

int pageNum = pdf.GetNumPages(); 

After we get the number of pages, we start looping on each page, get the height and width of the internal page, copy the page into the clipboard, paste the clipboard into a bitmap image.

for (int i = 0; i < pageNum; i++)
{
    pdfPage = (Acrobat.AcroPDPage)pdf.AcquirePage(i);
    pdfRectTemp = (Acrobat.AcroPoint)pdfPage.GetSize();
    pdfRect = new Acrobat.AcroRect();
    pdfRect.Left = 0;
    pdfRect.right = pdfRectTemp.x;
    pdfRect.Top = 0;
    pdfRect.bottom = pdfRectTemp.y;
    pdfPage.CopyToClipboard(pdfRect, 0, 0, 100);

    IDataObject clipboardData = Clipboard.GetDataObject();
    if (clipboardData.GetDataPresent(DataFormats.Bitmap))
    {    
        Bitmap pdfBitmap = clipboardData.GetData
	(System.Windows.Forms.DataFormats.Bitmap) as Bitmap;
        //create a dummy image then resize it to the real sizes
        ImageUtility.GenerateImage(pdfBitmap, destination + @"\Pages\Page" + 
		(i + 1).ToString("00") + ".jpg");
    }
}

We then resize the image using the class ImageUtility to resize the image and convert it into a JPG image with good resolution and fixed size. Then we save the generated images into the destination folder.

After we finish the image generation, we read the HTML body and add the script for the slide show.

System.IO.StreamReader reader = new System.IO.StreamReader
	(Application.StartupPath + "/HtmlBook/HtmlBook.html", 
	System.Text.Encoding.GetEncoding("Windows-1256"));
string strFileContents = reader.ReadToEnd();
reader.Close();

System.IO.DirectoryInfo pagesFolder = 
	new System.IO.DirectoryInfo(destination + @"\Pages");
FileInfo[] pages = pagesFolder.GetFiles();
//set the javascript file for rotation
string script = @"var list = new Array();";

int k = 0;
foreach (FileInfo file in pages)
{
    script += @"
    list[" + k + @"] = ""Pages/" + file.Name + @"""
    ";
    k++;
}

strFileContents = strFileContents.Replace("@@Javascript", script);
//save the file after generating the javascript html
StreamWriter sw = new StreamWriter(destination + "/HtmlBook.html");
sw.Write(strFileContents);
sw.Flush();
sw.Close();

The generated images will be added to a JavaScript array replaced on top of the HTML template and then saved back to the destination folder.

At the end, you will find a folder contains a simple HTML page with images generated aside. The HTML page will display the content of the PDF file:

New_Picture__2_.jpg

History

  • 14th December, 2009: 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

Suha Mneimneh

Team Leader
IDS
Lebanon Lebanon

Member

Follow on Twitter Follow on Twitter
Adore programming, interested in workflows, SharePoint and silverlight, Entity Framework.
My Blog: http://suhamneimne.wordpress.com

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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralAn small problem PinmemberV.SivaRamaKriShnaRaju1:41 27 Oct '10  
GeneralRe: An small problem PinmemberSuha Mneimneh11:53 27 Oct '10  
GeneralMy vote of 3 Pinmemberloverszhaokai15:49 27 Jul '10  
GeneralRe: My vote of 3 PinmemberSuha Mneimneh19:55 27 Jul '10  
GeneralHi Suha PinmemberMoooooodi1:35 28 Mar '10  
GeneralRe: Hi Suha Pinmemberloverszhaokai17:10 27 Jul '10  
QuestionMy question is whether this Professional DLL is free or comes with commercial version? PinmemberPriyank Bolia2:41 14 Dec '09  
GeneralIt's useful PingroupMd. Marufuzzaman1:36 14 Dec '09  
GeneralRe: It's useful Pinmemberloverszhaokai17:08 27 Jul '10  
GeneralMy vote of 2 Pinmembergaurav_verma_mca0:33 14 Dec '09  
GeneralRe: My vote of 2 PinmemberXmen W.K.15:06 16 Dec '09  

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 14 Dec 2009
Article Copyright 2009 by Suha Mneimneh
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid