PDF: Difference between revisions

From OLPC
Jump to navigation Jump to search
No edit summary
 
(Changing any to some.)
Line 1: Line 1:
The Portable Document Format (PDF) was developed by Adobe as a form of electronic paper. They wanted a way to simplify a Postscript document so that it could be viewed and printed on any computer system.
The Portable Document Format (PDF) was developed by Adobe as a form of electronic paper. They wanted a way to simplify a Postscript document so that it could be viewed and printed on any computer system.


PDF documents are very easy to create. Basically any word-processing or drawing program can generate PDF documents by using the Print command. If the user doesn't have a tool like [http://www.cutepdf.com/Products/CutePDF/writer.asp CutePDF] installed then PDFs can be created by selecting the Postscript print driver (Apple LaserWriter), outputting to a file, loading the file in the free [http://www.cs.wisc.edu/~ghost/ Ghostview] program and then exporting it as PDF.
PDF documents are very easy to create. Basically, some word-processing and drawing programs can generate PDF documents by using the Print command. If the user doesn't have a tool like [http://www.cutepdf.com/Products/CutePDF/writer.asp CutePDF] installed then PDFs can be created by selecting the Postscript print driver (Apple LaserWriter), outputting to a file, loading the file in the free [http://www.cs.wisc.edu/~ghost/ Ghostview] program and then exporting it as PDF.


[[Python]] has excellent support for producing PDF documents using the [http://www.reportlab.org/ Reportlab library].
[[Python]] has excellent support for producing PDF documents using the [http://www.reportlab.org/ Reportlab library].

Revision as of 18:34, 2 June 2006

The Portable Document Format (PDF) was developed by Adobe as a form of electronic paper. They wanted a way to simplify a Postscript document so that it could be viewed and printed on any computer system.

PDF documents are very easy to create. Basically, some word-processing and drawing programs can generate PDF documents by using the Print command. If the user doesn't have a tool like CutePDF installed then PDFs can be created by selecting the Postscript print driver (Apple LaserWriter), outputting to a file, loading the file in the free Ghostview program and then exporting it as PDF.

Python has excellent support for producing PDF documents using the Reportlab library.

More info on PDF is available at WikiPedia: http://en.wikipedia.org/wiki/Portable_Document_Format