Click here to Skip to main content
15,880,651 members
Articles / Programming Languages / C
Article

Simplest PDF Generating API for JPEG Image Content

Rate me:
Please Sign up or sign in to vote.
4.43/5 (19 votes)
19 Dec 2008CPOL1 min read 92.4K   3K   48   45
An article on how to generate PDF file based on JPEG file as page content

Introduction

I was working on a project in which I need to wrap a JPEG file into PDF format. The program needs to be done in C, and after searched on the Internet, I could not find anything that I can refer to. Most of the Open Source PDF engine is based on either Java or PHP, and a few C PDF engines are huge and will add a lot of unnecessary code to my project. I decided to write this simple JPEG to PDF wrapper. And it's the result of reverse-engineering of the simplest PDF file that contains one single JPEG file. I just want to share this API so you can grab and use it if you have a similar requirement.

Using the Code

Just give an example to demonstrate how to generate a 2 page PDF file based on 2 JPEG files. Please refer to testMain.c for details. But the idea is:

C++
PJPEG2PDF pPDF;
int pdfByteSize, pdfOutByteSize;
unsigned char *pdfBuf;

pPDF = Jpeg2PDF_BeginDocument(8.5, 11);    
	/* pdfW, pdfH: Page Size in Inch ( 1 inch=25.4 mm ); Letter Size 8.5x11 */

if(NULL != pPDF) {
    
    Loop For All JPEG Files {
        ... Prepare the current JPEG File to be inserted.
        /* You'll need to know the dimension of the JPEG Image, 
	and the ByteSize of the JPEG Image */
        Jpeg2PDF_AddJpeg(pPDF, JPEG_IMGW, JPEG_IMGH, JPEG_BYTE_SIZE, 
		JPEG_DATA_POINTER, IS_COLOR_JPEG);
    } 
    
    /* Call this after all of the JPEG image has been inserted. 
	The return value is the PDF file Byte Size */
    pdfByteSize = Jpeg2PDF_EndDocument(pPDF);
    
    /* Allocate the buffer for PDF Output */
    pdfBuf = malloc(pdfByteSize);
    
    /* Output the PDF to the pdfBuf */
   Jpeg2PDF_GetFinalDocumentAndCleanup(pPDF, pdfBuf, &pdfOutByteSize);
   
   ... Do something you want to the PDF file in the memory.
}

There are several places that you can fine-tune in the Jpeg2PDF.h file:

C++
#define MAX_PDF_PAGES        256     /* Currently only supports less than 256 Images */

#define PDF_TOP_MARGIN        (0.0 * PDF_DOT_PER_INCH)    /* Currently No Top Margin */
#define PDF_LEFT_MARGIN        (0.0 * PDF_DOT_PER_INCH)   /* Currently No Left Margin */

That's it, guys. Enjoy.

History

  • Updated [2008-12-19] - Added some extra code to auto scan the current folder and automatically obtain the JPEG image dimension from the JPEG file instead of using hard coded value before.
    The JPEG image dimension code is borrowed from here.

License

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


Written By
Software Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalhi Pin
xyang_200928-May-09 14:55
xyang_200928-May-09 14:55 
GeneralRe: hi Pin
Hao Hu28-May-09 15:17
Hao Hu28-May-09 15:17 
Generalvery good! Pin
ganfeng200320-Dec-08 16:14
ganfeng200320-Dec-08 16:14 
GeneralRe: very good! Pin
Hao Hu20-Dec-08 22:01
Hao Hu20-Dec-08 22:01 
GeneralJPEG Requirements Pin
Davide Zaccanti4-Oct-08 21:14
Davide Zaccanti4-Oct-08 21:14 
GeneralRe: JPEG Requirements Pin
Hao Hu4-Oct-08 21:32
Hao Hu4-Oct-08 21:32 
GeneralRe: JPEG Requirements [modified] Pin
Davide Zaccanti4-Oct-08 23:22
Davide Zaccanti4-Oct-08 23:22 
GeneralRe: JPEG Requirements Pin
Hao Hu5-Oct-08 10:25
Hao Hu5-Oct-08 10:25 
I just tried to change:

input01.jpg -> 1000x760x24bpp
input02.jpg -> 926x709x8bpp

And then I also modified the testMain.c:

......
Jpeg2PDF_AddJpeg(pdfId, 1000, 760, jpegSize, jpegBuf, 1);
......
Jpeg2PDF_AddJpeg(pdfId, 926, 709, jpegSize, jpegBuf, 0);
......

And the result output.pdf looks fine.
I'll send you my result by Email.

BTW: I also hard coded the JPEG image buffer size to be 512K. So in case
you JPEG file is larger than 512K, please increase the buffer size.

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

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