Site iconJava PDF Blog

How to make a PDF file manually

pdf_icon

PDF Files are very complex files and we always recommend you use a library such as JPedal when working with them. But it is possible to make a PDF file manually using nothing more than a simple text editor. Here we show you how.

You don’t need to be a magician to create PDF’s

A PDF file is a complex file format. Originally designed by Adobe, it is now an ISO standard of over 1000 pages. PDF files are unusual in that they do not contain the actual content (like a Word or Text file), but the information needed to create the display of the content when the PDF viewer puts it all together.

It is a simplified version of PostScript, where you create a program which runs to generate the output. This is why they are very hard to hack – you are editing the program to generate the content, not the actual content.

A PDF file contains a set of objects with a table telling you where the objects are all located in the PDF file. The objects themselves contain a mix of binary and text content. If you know what you are doing, you can create it yourself.

If I still have not put you off,  my colleague Daniel shows you how to build a really simple PDF file in this series of posts (and that is nasty enough). It is not for the faint-hearted……

Part 1: PDF Objects and Data Types
Part 2: Structure of a PDF file
Part 2.5: Create a non working PDF
Part 3: DIY Blank Page
Part 4: Hello World Pdf
Part 5: Path objects
Part 6: Graphics State