Click here to Skip to main content
15,889,403 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.9K   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

 
Generalhttps://sourceforge.net/projects/jpeg2pdf/ Pin
Hao Hu26-Aug-10 12:27
Hao Hu26-Aug-10 12:27 
GeneralRe: https://sourceforge.net/projects/jpeg2pdf/ Pin
monday200012-Mar-11 21:20
monday200012-Mar-11 21:20 
QuestionWhat about the XMP manipulation? [modified] Pin
monday200017-Aug-10 23:11
monday200017-Aug-10 23:11 
AnswerRe: What about the XMP manipulation? Pin
Hao Hu18-Aug-10 6:09
Hao Hu18-Aug-10 6:09 
GeneralDesired enhancements Pin
monday200014-Aug-10 0:09
monday200014-Aug-10 0:09 
GeneralRe: Desired enhancements Pin
Hao Hu14-Aug-10 15:12
Hao Hu14-Aug-10 15:12 
GeneralRe: Desired enhancements Pin
monday200015-Aug-10 19:44
monday200015-Aug-10 19:44 
GeneralI made my program based on this one Pin
monday200013-Aug-10 1:12
monday200013-Aug-10 1:12 
GeneralRe: I made my program based on this one Pin
monday200016-Mar-11 22:03
monday200016-Mar-11 22:03 
GeneralRe: I made my program based on this one Pin
Hao Hu18-Mar-11 20:16
Hao Hu18-Mar-11 20:16 
GeneralBug found Pin
monday200013-Aug-10 1:08
monday200013-Aug-10 1:08 
GeneralRe: Bug found [modified] Pin
Hao Hu13-Aug-10 5:43
Hao Hu13-Aug-10 5:43 
QuestionMay I re-use your code under the "GPL 2 and later" license? Pin
monday20002-Jul-10 1:32
monday20002-Jul-10 1:32 
AnswerRe: May I re-use your code under the "GPL 2 and later" license? Pin
Hao Hu2-Jul-10 7:33
Hao Hu2-Jul-10 7:33 
GeneralMy vote of 5 Pin
monday20001-Jul-10 23:06
monday20001-Jul-10 23:06 
GeneralBmp 2 pdf function Pin
Junson_Feng13-May-10 20:32
Junson_Feng13-May-10 20:32 
GeneralRe: Bmp 2 pdf function Pin
Hao Hu13-May-10 21:20
Hao Hu13-May-10 21:20 
QuestionHow to keep image's aspect ratio? Pin
Super Garrison6-Nov-09 17:50
Super Garrison6-Nov-09 17:50 
AnswerRe: How to keep image's aspect ratio? Pin
Hao Hu6-Nov-09 20:27
Hao Hu6-Nov-09 20:27 
QuestionHow to add more than 2 images? Pin
WaleedH11-Jul-09 4:54
WaleedH11-Jul-09 4:54 
AnswerRe: How to add more than 2 images? Pin
Hao Hu11-Jul-09 13:03
Hao Hu11-Jul-09 13:03 
GeneralRe: How to add more than 2 images? [modified] Pin
WaleedH11-Jul-09 19:58
WaleedH11-Jul-09 19:58 
GeneralRe: How to add more than 2 images? Pin
Hao Hu11-Jul-09 20:33
Hao Hu11-Jul-09 20:33 
GeneralRe: How to add more than 2 images? Pin
WaleedH11-Jul-09 21:30
WaleedH11-Jul-09 21:30 
GeneralRe: How to add more than 2 images? Pin
Hao Hu11-Jul-09 21:48
Hao Hu11-Jul-09 21:48 

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.