PDF - Wikipedia
PDF - Wikipedia
Portable Document Format (PDF), standardized as ISO 32000, is a file format developed by Adobe in
Portable Document Format
1992 to present documents, including text formatting and images, in a manner independent of application
software, hardware, and operating systems.[2][3] Based on the PostScript language, each PDF file encapsulates
a complete description of a fixed-layout flat document, including the text, fonts, vector graphics, raster images
and other information needed to display it. PDF has its roots in "The Camelot Project" initiated by Adobe co-
founder John Warnock in 1991.[4] PDF was standardized as ISO 32000 in 2008.[5] The last edition as ISO
32000-2:2020 was published in December 2020.
PDF files may contain a variety of content besides flat text and graphics including logical structuring elements,
interactive elements such as annotations and form-fields, layers, rich media (including video content), three- Adobe PDF icon
dimensional objects using U3D or PRC, and various other data formats. The PDF specification also provides Filename .pdf
for encryption and digital signatures, file attachments, and metadata to enable workflows requiring these extension
features. Internet application/pdf,[1]
media type
application/x-pdf
application/x-bzpdf
History application/x-gzpdf
The development of PDF began in 1991 when John Warnock wrote a paper for a project then code-named Type code PDF [1] (including a single
Camelot, in which he proposed the creation of a simplified version of PostScript called Interchange PostScript trailing space)
(IPS).[6] Unlike traditional PostScript, which was tightly focused on rendering print jobs to output devices, IPS Uniform Type com.adobe.pdf
Identifier (UTI)
would be optimized for displaying pages to any screen and any platform.[6]
Magic number %PDF
Adobe Systems made the PDF specification available free of charge in 1993. In the early years PDF was Developed by Adobe Inc. (1991–2008)
popular mainly in desktop publishing workflows, and competed with several other formats, including DjVu, ISO (2008–)
Envoy, Common Ground Digital Paper, Farallon Replica and even Adobe's own PostScript format. Initial release June 15, 1993
Latest release 2.0
Extended to PDF/A, PDF/E, PDF/UA,
PDF/VT, PDF/X
PDF was a proprietary format controlled by Adobe until it was released as an open standard on July 1, 2008, Standard ISO 32000-2
and published by the International Organization for Standardization as ISO 32000-1:2008,[7][8] at which time Open format? Yes
control of the specification passed to an ISO Committee of volunteer industry experts. In 2008, Adobe Website iso.org/standard/75839
published a Public Patent License to ISO 32000-1 granting royalty-free rights for all patents owned by Adobe .html (https://iso.org/standa
necessary to make, use, sell, and distribute PDF-compliant implementations.[9] rd/75839.html)
PDF 1.7, the sixth edition of the PDF specification that became ISO 32000-1, includes some proprietary technologies defined only by Adobe, such as Adobe
XML Forms Architecture (XFA) and JavaScript extension for Acrobat, which are referenced by ISO 32000-1 as normative and indispensable for the full
implementation of the ISO 32000-1 specification.[10] These proprietary technologies are not standardized, and their specification is published only on
Adobe's website.[11][12][13] Many of them are not supported by popular third-party implementations of PDF.
ISO published version 2.0 of PDF, ISO 32000-2 in 2017, available for purchase, replacing the free specification provided by Adobe.[14] In December 2020,
the second edition of PDF 2.0, ISO 32000-2:2020, was published, with clarifications, corrections, and critical updates to normative references[15] (ISO
32000-2 does not include any proprietary technologies as normative references).[16] In April 2023 the PDF Association made ISO 32000-2 available for
download free of charge.[14]
Technical details
A PDF file is often a combination of vector graphics, text, and bitmap graphics. The basic types of content in a PDF are:
Typeset text stored as content streams (i.e., not encoded in plain text);
Vector graphics for illustrations and designs that consist of shapes and lines;
Raster graphics for photographs and other types of images; and
Other multimedia objects.
In later PDF revisions, a PDF document can also support links (inside document or web page), forms, JavaScript (initially available as a plugin for Acrobat
3.0), or any other types of embedded contents that can be handled using plug-ins.
An equivalent subset of the PostScript page description programming language but in declarative form, for generating the layout and graphics.
A font-embedding/replacement system to allow fonts to travel with the documents.
A structured storage system to bundle these elements and any associated content into a single file, with data compression where appropriate.
PostScript language
PostScript is a page description language run in an interpreter to generate an image.[6] It can handle graphics and has standard features of programming
languages such as branching and looping.[6] PDF is a subset of PostScript, simplified to remove such control flow features, while graphics commands
remain.[6]
PostScript was originally designed for a drastically different use case: transmission of one-way linear print jobs in which the PostScript interpreter would
collect a series of commands until it encountered the showpage command, then execute all the commands to render a page as a raster image to a printing
device.[17] PostScript was not intended for long-term storage and real-time interactive rendering of electronic documents to computer monitors, so there
was no need to support anything other than consecutive rendering of pages.[17] If there was an error in the final printed output, the user would correct it at
the application level and send a new print job in the form of an entirely new PostScript file. Thus, any given page in a PostScript file could be accurately
rendered only as the cumulative result of executing all preceding commands to draw all previous pages—any of which could affect subsequent pages—plus
the commands to draw that particular page, and there was no easy way to bypass that process to skip around to different pages.[17]
Traditionally, to go from PostScript to PDF, a source PostScript file (that is, an executable program) is used as the basis for generating PostScript-like PDF
code (see, e.g., Adobe Distiller). This is done by applying standard compiler techniques like loop unrolling, inlining and removing unused branches,
resulting in code that is purely declarative and static.[17] The end result is then packaged into a container format, together with all necessary dependencies
for correct rendering (external files, graphics, or fonts to which the document refers), and compressed. Modern applications write to printer drivers that
directly generate PDF rather than going through PostScript first.
PDF contains only static declarative PostScript code that can be processed as data, and does not require a full program interpreter or compiler.[17] This
avoids the complexity and security risks of an engine with such a higher complexity level.
Like Display PostScript, PDF has supported transparent graphics since version 1.4, while standard PostScript does not.
PDF enforces the rule that the code for any particular page cannot affect any other pages.[17] That rule is strongly recommended for PostScript code
too, but has to be implemented explicitly (see, e.g., the Document Structuring Conventions), as PostScript is a full programming language that allows for
such greater flexibilities and is not limited to the concepts of pages and documents.
All data required for rendering is included within the file itself, improving portability.[18]
Its disadvantages are:
File format
A PDF file is organized using ASCII characters, except for certain elements that may have binary content. The file starts with a header containing a magic
number (as a readable string) and the version of the format, for example %PDF-1.7. The format is a subset of a COS ("Carousel" Object Structure)
format.[23] A COS tree file consists primarily of objects, of which there are nine types:[16]
Objects may be either direct (embedded in another object) or indirect. Indirect objects are numbered with an object number and a generation number and
defined between the obj and endobj keywords if residing in the document root. Beginning with PDF version 1.5, indirect objects (except other streams) may
also be located in special streams known as object streams (marked /Type /ObjStm). This technique enables non-stream objects to have standard stream
filters applied to them, reduces the size of files that have large numbers of small indirect objects and is especially useful for Tagged PDF. Object streams do
not support specifying an object's generation number (other than 0).
An index table, also called the cross-reference table, is located near the end of the file and gives the byte offset of each indirect object from the start of the
file.[24] This design allows for efficient random access to the objects in the file, and also allows for small changes to be made without rewriting the entire file
(incremental update). Before PDF version 1.5, the table would always be in a special ASCII format, be marked with the xref keyword, and follow the main
body composed of indirect objects. Version 1.5 introduced optional cross-reference streams, which have the form of a standard stream object, possibly with
filters applied. Such a stream may be used instead of the ASCII cross-reference table and contains the offsets and other information in binary format. The
format is flexible in that it allows for integer width specification (using the /W array), so that for example, a document not exceeding 64 KiB in size may
dedicate only 2 bytes for object offsets.
At the end of a PDF file is a footer containing
The startxref keyword followed by an offset to the start of the cross-reference table (starting with the xref keyword) or the cross-reference stream
object, followed by
The %%EOF end-of-file marker.
If a cross-reference stream is not being used, the footer is preceded by the trailer keyword followed by a dictionary containing information that would
otherwise be contained in the cross-reference stream object's dictionary:
A reference to the root object of the tree structure, also known as the catalog (/Root)
The count of indirect objects in the cross-reference table (/Size)
Other optional information
Within each page, there are one or multiple content streams that describe the text, vector and images being drawn on the page. The content stream is stack-
based, similar to PostScript.[25]
There are two layouts to the PDF files: non-linearized (not "optimized") and linearized ("optimized"). Non-linearized
PDF files can be smaller than their linear counterparts, though they are slower to access because portions of the data
required to assemble pages of the document are scattered throughout the PDF file. Linearized PDF files (also called
"optimized" or "web optimized" PDF files) are constructed in a manner that enables them to be read in a Web browser
plugin without waiting for the entire file to download, since all objects required for the first page to display are optimally
organized at the start of the file.[26] PDF files may be optimized using Adobe Acrobat software or QPDF.
Page dimensions are not limited by the format itself. However, Adobe Acrobat imposes a limit of 15 million by 15 million
inches, or 225 trillion in2 (145,161 km2).[2]: 1129
The maximum size of an Acrobat
PDF page, superimposed on a map
Imaging model of Europe.
The basic design of how graphics are represented in PDF is very similar to that of PostScript, except for the use of
transparency, which was added in PDF 1.4.
PDF graphics use a device-independent Cartesian coordinate system to describe the surface of a page. A PDF page description can use a matrix to scale,
rotate, or skew graphical elements. A key concept in PDF is that of the graphics state, which is a collection of graphical parameters that may be changed,
saved, and restored by a page description. PDF has (as of version 2.0) 25 graphics state properties, of which some of the most important are:
The current transformation matrix (CTM), which determines the coordinate system
The clipping path
The color space
The alpha constant, which is a key component of transparency
Black point compensation control (introduced in PDF 2.0)
Vector graphics
As in PostScript, vector graphics in PDF are constructed with paths. Paths are usually composed of lines and cubic Bézier curves, but can also be constructed
from the outlines of text. Unlike PostScript, PDF does not allow a single path to mix text outlines with lines and curves. Paths can be stroked, filled, fill then
stroked, or used for clipping. Strokes and fills can use any color set in the graphics state, including patterns. PDF supports several types of patterns. The
simplest is the tiling pattern in which a piece of artwork is specified to be drawn repeatedly. This may be a colored tiling pattern, with the colors specified in
the pattern object, or an uncolored tiling pattern, which defers color specification to the time the pattern is drawn. Beginning with PDF 1.3 there is also a
shading pattern, which draws continuously varying colors. There are seven types of shading patterns of which the simplest are the axial shading (Type 2)
and radial shading (Type 3).
Raster images
Raster images in PDF (called Image XObjects) are represented by dictionaries with an associated stream. The dictionary describes the properties of the
image, and the stream contains the image data. (Less commonly, small raster images may be embedded directly in a page description as an inline image.)
Images are typically filtered for compression purposes. Image filters supported in PDF include the following general-purpose filters:
Text
Text in PDF is represented by text elements in page content streams. A text element specifies that characters should be drawn at certain positions. The
characters are specified using the encoding of a selected font resource.
A font object in PDF is a description of a digital typeface. It may either describe the characteristics of a typeface, or it may include an embedded font file. The
latter case is called an embedded font while the former is called an unembedded font. The font files that may be embedded are based on widely used
standard digital font formats: Type 1 (and its compressed variant CFF), TrueType, and (beginning with PDF 1.6) OpenType. Additionally PDF supports the
Type 3 variant in which the components of the font are described by PDF graphic operators.
Fourteen typefaces, known as the standard 14 fonts, have a special significance in PDF documents:
Within text strings, characters are shown using character codes (integers) that map to glyphs in the current font using an encoding. There are several
predefined encodings, including WinAnsi, MacRoman, and many encodings for East Asian languages and a font can have its own built-in encoding.
(Although the WinAnsi and MacRoman encodings are derived from the historical properties of the Windows and Macintosh operating systems, fonts using
these encodings work equally well on any platform.) PDF can specify a predefined encoding to use, the font's built-in encoding or provide a lookup table of
differences to a predefined or built-in encoding (not recommended with TrueType fonts).[2] The encoding mechanisms in PDF were designed for Type 1
fonts, and the rules for applying them to TrueType fonts are complex.
For large fonts or fonts with non-standard glyphs, the special encodings Identity-H (for horizontal writing) and Identity-V (for vertical) are used. With such
fonts, it is necessary to provide a ToUnicode table if semantic information about the characters is to be preserved.
A text document which is scanned to PDF without the text being recognised by optical character recognition (OCR) is an image, with no fonts or text
properties.
Transparency
The original imaging model of PDF was opaque, similar to PostScript, where each object drawn on the page completely replaced anything previously marked
in the same location. In PDF 1.4 the imaging model was extended to allow transparency. When transparency is used, new objects interact with previously
marked objects to produce blending effects. The addition of transparency to PDF was done by means of new extensions that were designed to be ignored in
products written to PDF 1.3 and earlier specifications. As a result, files that use a small amount of transparency might be viewed acceptably by older viewers,
but files making extensive use of transparency could be viewed incorrectly by an older viewer.
The transparency extensions are based on the key concepts of transparency groups, blending modes, shape, and alpha. The model is closely aligned with
the features of Adobe Illustrator version 9. The blend modes were based on those used by Adobe Photoshop at the time. When the PDF 1.4 specification was
published, the formulas for calculating blend modes were kept secret by Adobe. They have since been published.[29]
The concept of a transparency group in PDF specification is independent of existing notions of "group" or "layer" in applications such as Adobe Illustrator.
Those groupings reflect logical relationships among objects that are meaningful when editing those objects, but they are not part of the imaging model.
Additional features
Tagged PDF is not required in situations where a PDF file is intended only for print. Since the feature is optional, and since the rules for tagged PDF were
relatively vague in ISO 32000-1, support for tagged PDF among consuming devices, including assistive technology (AT), is uneven as of 2021.[32] ISO
32000-2, however, includes an improved discussion of tagged PDF which is anticipated to facilitate further adoption.
An ISO-standardized subset of PDF specifically targeted at accessibility, PDF/UA, was first published in 2012.
Basically, it consists of an Optional Content Properties Dictionary added to the document root. This dictionary contains an array of Optional Content Groups
(OCGs), each describing a set of information and each of which may be individually displayed or suppressed, plus a set of Optional Content Configuration
Dictionaries, which give the status (Displayed or Suppressed) of the given OCGs.
PDF files may be digitally signed, to provide secure authentication; complete details on implementing digital signatures in PDF are provided in ISO 32000-
2.
PDF files may also contain embedded DRM restrictions that provide further controls that limit copying, editing, or printing. These restrictions depend on
the reader software to obey them, so the security they provide is limited.
The standard security provided by PDF consists of two different methods and two different passwords: a user password, which encrypts the file and
prevents opening, and an owner password, which specifies operations that should be restricted even when the document is decrypted, which can include
modifying, printing, or copying text and graphics out of the document, or adding or modifying text notes and AcroForm fields. The user password encrypts
the file, while the owner password does not, instead relying on client software to respect these restrictions. An owner password can easily be removed by
software, including some free online services.[33] Thus, the use restrictions that a document author places on a PDF document are not secure, and cannot be
assured once the file is distributed; this warning is displayed when applying such restrictions using Adobe Acrobat software to create or edit PDF files.
Even without removing the password, most freeware or open source PDF readers ignore the permission "protections" and allow the user to print or make
copy of excerpts of the text as if the document were not limited by password protection.[34][35][36]
Beginning with PDF 1.5, Usage rights (UR) signatures are used to enable additional interactive features that are not available by default in a particular PDF
viewer application. The signature is used to validate that the permissions have been granted by a bona fide granting authority. For example, it can be used to
allow a user:[37]
To save the PDF document along with a modified form or annotation data
Import form data files in FDF, XFDF, and text (CSV/TSV) formats
Export form data files in FDF and XFDF formats
Submit form data
Instantiate new pages from named page templates
Apply a digital signature to existing digital signature form field
Create, delete, modify, copy, import, and export annotations
For example, Adobe Systems grants permissions to enable additional features in Adobe Reader, using public-key cryptography. Adobe Reader verifies that
the signature uses a certificate from an Adobe-authorized certificate authority. Any PDF application can use this same mechanism for its own purposes.[37]
Under specific circumstances including non-patched systems of the receiver, the information the receiver of a digital signed document sees can be
manipulated by the sender after the document has been signed by the signer.[38]
PAdES (PDF Advanced Electronic Signatures) is a set of restrictions and extensions to PDF and ISO 32000-1[39] making it suitable for advanced electronic
signatures. This is published by ETSI as TS 102 778.[40]
File attachments
PDF files can have file attachments which processors may access and open or save to a local filesystem.[41]
Metadata
PDF files can contain two types of metadata.[2] The first is the Document Information Dictionary, a set of key/value fields such as author, title, subject,
creation and update dates. This is optional and is referenced from an Info key in the trailer of the file. A small set of fields is defined and can be extended
with additional text values if required. This method is deprecated in PDF 2.0.
In PDF 1.4, support was added for Metadata Streams, using the Extensible Metadata Platform (XMP) to add XML standards-based extensible metadata as
used in other file formats. PDF 2.0 allows metadata to be attached to any object in the document, such as information about embedded illustrations, fonts,
and images, as well as the whole document (attaching to the document catalog), using an extensible schema.
PDF documents can also contain display settings, including the page display layout and zoom level in a Viewer Preferences object. Adobe Reader uses these
settings to override the user's default settings when opening the document.[42] The free Adobe Reader cannot remove these settings.
Accessibility
PDF files can be created specifically to be accessible to people with disabilities.[43][44][45][46][47] PDF file formats in use as of 2014 can include tags, text
equivalents, captions, audio descriptions, and more. Some software can automatically produce tagged PDFs, but this feature is not always enabled by
default.[48][49] Leading screen readers, including JAWS, Window-Eyes, Hal, and Kurzweil 1000 and 3000 can read tagged PDFs.[50][51] Moreover, tagged
PDFs can be re-flowed and magnified for readers with visual impairments. Adding tags to older PDFs and those that are generated from scanned documents
can present some challenges.
One of the significant challenges with PDF accessibility is that PDF documents have three distinct views, which, depending on the document's creation, can
be inconsistent with each other. The three views are (i) the physical view, (ii) the tags view, and (iii) the content view. The physical view is displayed and
printed (what most people consider a PDF document). The tags view is what screen readers and other assistive technologies use to deliver high-quality
navigation and reading experience to users with disabilities. The content view is based on the physical order of objects within the PDF's content stream and
may be displayed by software that does not fully support the tags' view, such as the Reflow feature in Adobe's Reader.
PDF/UA, the International Standard for accessible PDF based on ISO 32000-1 was first published as ISO 14289–1 in 2012 and establishes normative
language for accessible PDF technology.
Multimedia
Rich Media PDF is a PDF file including interactive content that can be embedded or linked within the file. It can contain images, audio, video content, or
buttons. For example, if the interactive PDF is a digital catalog for an E-commerce business, products can be listed on the PDF pages and can be added with
images and links to the website and buttons to order directly from the document.
Forms
Interactive Forms is a mechanism to add forms to the PDF file format. PDF currently supports two different methods for integrating data and PDF forms.
Both formats today coexist in the PDF specification:[37][52][53][54]
AcroForms (also known as Acrobat forms), introduced in the PDF 1.2 format specification and included in all later PDF specifications.
XML Forms Architecture (XFA) forms, introduced in the PDF 1.5 format specification. Adobe XFA Forms are not compatible with AcroForms.[55] XFA was
deprecated from PDF with PDF 2.0.
AcroForms were introduced in the PDF 1.2 format. AcroForms permit the uses of objects (e.g. text boxes, Radio buttons, etc.) and some code (e.g.
JavaScript). Alongside the standard PDF action types, interactive forms (AcroForms) support submitting, resetting, and importing data. The "submit" action
transmits the names and values of selected interactive form fields to a specified uniform resource locator (URL). Interactive form field names and values
may be submitted in any of the following formats, (depending on the settings of the action's ExportFormat, SubmitPDF, and XFDF flags):[37]
The entire document can be submitted rather than individual fields and values, as was defined in PDF 1.4.
AcroForms can keep form field values in external stand-alone files containing key-value pairs. The external files may use Forms Data Format (FDF) and
XML Forms Data Format (XFDF) files.[58][56][59] The usage rights (UR) signatures define rights for import form data files in FDF, XFDF, and text
(CSV/TSV) formats, and export form data files in FDF and XFDF formats.[37]
In PDF 1.5, Adobe Systems introduced a proprietary format for forms; Adobe XML Forms Architecture (XFA). Adobe XFA Forms are not compatible with
ISO 32000's AcroForms feature, and most PDF processors do not handle XFA content. The XFA specification is referenced from ISO 32000-1/PDF 1.7 as an
external proprietary specification and was entirely deprecated from PDF with ISO 32000-2 (PDF 2.0).
Licensing
Anyone may create applications that can read and write PDF files without having to pay royalties to Adobe Systems; Adobe holds patents to PDF, but
licenses them for royalty-free use in developing software complying with its PDF specification.[60]
Security
Changes to content
In November 2019, researchers from Ruhr University Bochum and Hackmanit GmbH published attacks on digitally signed PDFs.[61] They showed how to
change the visible content in a signed PDF without invalidating the signature in 21 of 22 desktop PDF viewers and 6 of 8 online validation services by
abusing implementation flaws. At the same conference, they additionally showed how to exfiltrate the plaintext of encrypted content in PDFs.[62] In 2021,
they showed new so-called shadow attacks on PDFs that abuse the flexibility of features provided in the specification.[63] An overview of security issues in
PDFs regarding denial of service, information disclosure, data manipulation, and arbitrary code execution attacks was presented by Jens Müller.[64][65]
Malware vulnerability
PDF files can be infected with viruses, Trojans, and other malware. They can have hidden JavaScript code that might exploit vulnerabilities in a PDF, hidden
objects executed when the file that hides them is opened, and, less commonly, a malicious PDF can launch malware.[66]
PDF attachments carrying viruses were first discovered in 2001. The virus, named OUTLOOK.PDFWorm or Peachy, uses Microsoft Outlook to send itself as
an attached Adobe PDF file. It was activated with Adobe Acrobat, but not with Acrobat Reader.[67]
From time to time, new vulnerabilities are discovered in various versions of Adobe Reader,[68] prompting the company to issue security fixes. Other PDF
readers are also susceptible. One aggravating factor is that a PDF reader can be configured to start automatically if a web page has an embedded PDF file,
providing a vector for attack. If a malicious web page contains an infected PDF file that takes advantage of a vulnerability in the PDF reader, the system may
be compromised even if the browser is secure. Some of these vulnerabilities are a result of the PDF standard allowing PDF documents to be scripted with
JavaScript. Disabling JavaScript execution in the PDF reader can help mitigate such future exploits, although it does not protect against exploits in other
parts of the PDF viewing software. Security experts say that JavaScript is not essential for a PDF reader and that the security benefit that comes from
disabling JavaScript outweighs any compatibility issues caused.[69] One way of avoiding PDF file exploits is to have a local or web service convert files to
another format before viewing.
On March 30, 2010, security researcher Didier Stevens reported an Adobe Reader and Foxit Reader exploit that runs a malicious executable if the user
allows it to launch when asked.[70]
Software
There are many software options for creating PDFs, including the PDF printing capabilities built into macOS, iOS,[71] and most Linux distributions. Much
document processing software including LibreOffice, Microsoft Office 2007 (if updated to SP2) and later,[72] WordPerfect 9, and Scribus can export
documents in PDF format. There are many PDF print drivers for Microsoft Windows, the pdfTeX typesetting system, the DocBook PDF tools, applications
developed around Ghostscript and Adobe Acrobat itself as well as Adobe InDesign, Adobe FrameMaker, Adobe Illustrator, Adobe Photoshop, that allow a
"PDF printer" to be set up, which when selected sends output to a PDF file instead of a physical printer. Google's online office suite Google Docs allows
uploading and saving to PDF. Some web apps offer free PDF editing and annotation tools.
The Free Software Foundation was "developing a free, high-quality and fully functional set of libraries and programs that implement the PDF file format and
associated technologies to the ISO 32000 standard", as one of its high priority projects.[73][74] In 2011, however, the GNU PDF project was removed from
the list of "high priority projects" due to the maturation of the Poppler library,[75] which has enjoyed wider use in applications such as Evince with the
GNOME desktop environment. Poppler is based on Xpdf[76][77] code base. There are also commercial development libraries available as listed in List of PDF
software.
The Apache PDFBox project of the Apache Software Foundation is an open source Java library, licensed under the Apache License, for working with PDF
documents.[78]
Printing
Raster image processors (RIPs) are used to convert PDF files into a raster format suitable for imaging onto paper and other media in printers, digital
production presses and prepress in a process known as rasterization. RIPs capable of processing PDF directly include the Adobe PDF Print Engine[79] from
Adobe Systems and Jaws[80] and the Harlequin RIP from Global Graphics.
In 1993, the Jaws raster image processor from Global Graphics became the first shipping prepress RIP that interpreted PDF natively without conversion to
another format. The company released an upgrade to its Harlequin RIP with the same capability in 1997.[81]
Agfa-Gevaert introduced and shipped Apogee, the first prepress workflow system based on PDF, in 1997.
Many commercial offset printers have accepted the submission of press-ready PDF files as a print source, specifically the PDF/X-1a subset and variations of
the same.[82] The submission of press-ready PDF files is a replacement for the problematic need for receiving collected native working files.
In 2006, PDF was widely accepted as the standard print job format at the Open Source Development Labs Printing Summit. It is supported as a print job
format by the Common Unix Printing System and desktop application projects such as GNOME, KDE, Firefox, Thunderbird, LibreOffice and OpenOffice
have switched to emit print jobs in PDF.[83]
Some desktop printers also support direct PDF printing, which can interpret PDF data without external help.
Annotation
Adobe Acrobat is one example of proprietary software that allows the user to annotate, highlight, and add notes to already created PDF files. One UNIX
application available as free software (under the GNU General Public License) is PDFedit. The freeware Foxit Reader, available for Microsoft Windows,
macOS and Linux, allows annotating documents. Tracker Software's PDF-XChange Viewer allows annotations and markups without restrictions in its
freeware alternative. Apple's macOS's integrated PDF viewer, Preview, does also enable annotations as does the open-source software Skim, with the latter
supporting interaction with LaTeX, SyncTeX, and PDFSync and integration with BibDesk reference management software. Freeware Qiqqa can create an
annotation report that summarizes all the annotations and notes one has made across their library of PDFs. The Text Verification Tool exports differences in
documents as annotations and markups.
There are also web annotation systems that support annotation in pdf and other document formats. In cases where PDFs are expected to have all of the
functionality of paper documents, ink annotation is required.
Alternatives
The Open XML Paper Specification is a competing format used both as a page description language and as the native print spooler format for Microsoft
Windows since Windows Vista.
Mixed Object: Document Content Architecture is a competing format. MO:DCA-P is a part of Advanced Function Presentation.
See also
Web page
XSL Formatting Objects
Page margin
PDF portfolio
References
1. Hardy, M.; Masinter, L.; Markovic, D.; Johnson, D.; Bailey, M. (March 6. Pfiffner, Pamela (2003). Inside the Publishing Revolution: The Adobe
2017). The application/pdf Media Type (https://datatracker.ietf.org/doc/ht Story. Berkeley: Peachpit Press. p. 137. ISBN 0-321-11564-3.
ml/rfc8118). IETF. doi:10.17487/RFC8118 (https://doi.org/10.17487%2FR 7. "ISO 32000-1:2008 – Document management – Portable document
FC8118). RFC 8118 (https://datatracker.ietf.org/doc/html/rfc8118). format – Part 1: PDF 1.7" (http://www.iso.org/iso/iso_catalogue/catalogue
2. Adobe Systems Incorporated (November 2006). "PDF Reference" (http _tc/catalogue_detail.htm?csnumber=51502). ISO. July 1, 2008. Archived
s://web.archive.org/web/20081001170454/https://www.adobe.com/devne (https://web.archive.org/web/20101206175751/http://www.iso.org/iso/iso
t/acrobat/pdfs/pdf_reference_1-7.pdf) (PDF). 1.7 (6th ed.). Archived from _catalogue/catalogue_tc/catalogue_detail.htm?csnumber=51502) from
the original (https://www.adobe.com/devnet/acrobat/pdfs/pdf_reference_ the original on December 6, 2010. Retrieved February 21, 2010.
1-7.pdf) (PDF) on October 1, 2008. Retrieved January 12, 2023. 8. Orion, Egan (December 5, 2007). "PDF 1.7 is approved as ISO 32000"
3. Warnock, J. (October 14, 2004) [Original date 5 May 1995]. "The (https://web.archive.org/web/20071213004627/http://www.theinquirer.net/
Camelot Project" (https://www.pdfa.org/norm-refs/warnock_camelot.pdf) gb/inquirer/news/2007/12/05/pdf-approved-iso-32000). The Inquirer.
(PDF). Archived (https://web.archive.org/web/20110718230852/http://ww Archived from the original (http://www.theinquirer.net/gb/inquirer/news/20
w.planetpdf.com/planetpdf/pdfs/warnock_camelot.pdf) (PDF) from the 07/12/05/pdf-approved-iso-32000) on December 13, 2007. Retrieved
original on July 18, 2011. December 5, 2007.
4. "What is a PDF? Portable Document Format | Adobe Acrobat DC" (http 9. "Public Patent License, ISO 32000-1: 2008 – PDF 1.7" (https://www.adob
s://www.adobe.com/acrobat/about-adobe-pdf.html). Adobe Systems Inc. e.com/pdf/pdfs/ISO32000-1PublicPatentLicense.pdf) (PDF). Adobe
Archived (https://web.archive.org/web/20230130032548/https://www.ado Systems Inc. 2008. Archived (https://web.archive.org/web/200906181446
be.com/acrobat/about-adobe-pdf.html) from the original on January 30, 13/http://www.adobe.com/pdf/pdfs/ISO32000-1PublicPatentLicense.pdf)
2023. Retrieved January 12, 2023. (PDF) from the original on June 18, 2009. Retrieved January 12, 2023.
5. "ISO 32000-1:2008" (https://web.archive.org/web/20180726064724/htt
p://wwwimages.adobe.com/www.adobe.com/content/dam/acom/en/devn
et/pdf/pdfs/PDF32000_2008.pdf) (PDF). Archived from the original (htt
p://wwwimages.adobe.com/www.adobe.com/content/dam/acom/en/devn
et/pdf/pdfs/PDF32000_2008.pdf) (PDF) on July 26, 2018.
10. "Guide for the procurement of standards-based ICT – Elements of Good 15. "ISO 32000-2:2020 is now available" (https://www.pdfa.org/iso-32000-22
Practice, Against lock-in: building open ICT systems by making better 020-is-now-available/). PDFA. December 14, 2020. Archived (https://we
use of standards in public procurement" (https://eur-lex.europa.eu/LexUri b.archive.org/web/20221204112238/https://www.pdfa.org/iso-32000-220
Serv/LexUriServ.do?uri=SWD:2013:0224:FIN:EN:PDF). European 20-is-now-available/) from the original on December 4, 2022. Retrieved
Commission. June 25, 2013. Archived (https://web.archive.org/web/2020 February 3, 2021.
0919174545/https://eur-lex.europa.eu/LexUriServ/LexUriServ.do?uri=SW 16. "ISO 32000-2 – Document management — Portable document format —
D:2013:0224:FIN:EN:PDF) from the original on September 19, 2020. Part 2: PDF 2.0" (https://www.iso.org/standard/75839.html). ISO. January
Retrieved January 12, 2023. "Example: ISO/IEC 29500, ISO/IEC 26300 5, 2021. Archived (https://web.archive.org/web/20210128003836/https://
and ISO 32000 for document formats reference information that is not www.iso.org/standard/75839.html) from the original on January 28, 2021.
accessible by all parties (references to proprietary technology and brand Retrieved February 3, 2021.
names, incomplete scope or dead web links)." 17. Pfiffner, Pamela (2003). Inside the Publishing Revolution: The Adobe
11. "ISO/TC 171/SC 2/WG 8 N 603 – Meeting Report" (https://web.archive.or Story. Berkeley: Peachpit Press. p. 139. ISBN 0-321-11564-3.
g/web/20121126013025/http://pdf.editme.com/files/pdfREF-meetings/IS 18. "PostScript Language Reference]" (https://web.archive.org/web/2021072
O-TC171-SC2-WG8_N0603_SC2WG8_MtgRept_SLC.pdf) (PDF). Edit 4120635/https://www.adobe.com/content/dam/acom/en/devnet/actionscri
me. June 27, 2011. Archived from the original (http://pdf.editme.com/files/ pt/articles/PLRM.pdf) (PDF). Archived from the original (https://www.adob
pdfREF-meetings/ISO-TC171-SC2-WG8_N0603_SC2WG8_MtgRept_S e.com/content/dam/acom/en/devnet/actionscript/articles/PLRM.pdf)
LC.pdf) (PDF) on November 26, 2012 – via Archive. "XFA is not to be (PDF) on July 24, 2021.
ISO standard just yet. The Committee urges Adobe Systems to submit
the XFA Specification, XML Forms Architecture (XFA), to ISO for 19. Anton Ertl, Martin. "What is the PDF format good for?" (https://www.comp
standardization The Committee is concerned about the stability of the lang.tuwien.ac.at/anton/why-not-pdf.html). complang.tuwien.ac.at.
XFA specification Part 2 will reference XFA 3.1" Vienna University of Technology. Archived (https://web.archive.org/web/2
0240404031526/https://www.complang.tuwien.ac.at/anton/why-not-pdf.ht
12. "Embedding and publishing interactive, 3-dimensional, scientific figures ml) from the original on April 4, 2024. Retrieved April 8, 2024.
in Portable Document Format (PDF) files" (https://doi.org/10.1371%2Fjou
rnal.pone.0069446.s001). PLOS ONE. 8 (9). 2013. 20. "3D supported formats" (https://web.archive.org/web/20100212072951/ht
doi:10.1371/journal.pone.0069446.s001 (https://doi.org/10.1371%2Fjour tp://www.adobe.com/manufacturing/resources/3dformats/). Adobe
nal.pone.0069446.s001). "the implementation of the U3D standard was Systems Inc. July 14, 2009. Archived from the original (https://www.adob
not complete and proprietary extensions were used." e.com/manufacturing/resources/3dformats/) on February 12, 2010.
Retrieved February 21, 2010.
13. Leonard Rosenthol (2012). "PDF and Standards" (https://web.archive.or
g/web/20130902000323/http://cdn.parleys.com/p/5148922a0364bc17fc5 21. "Supported file formats in Acrobat and Reader" (https://helpx.adobe.com/
6c6e5/iSUM2012_00_LRO_presentation.pdf) (PDF). Adobe Systems. acrobat/kb/supported-file-formats-acrobat-reader.html#main_2D_and_3D
Archived from the original (http://cdn.parleys.com/p/5148922a0364bc17f _formats__Acrobat_9_Pro_Extended__Adobe_3D_Reviewer_). Adobe
c56c6e5/iSUM2012_00_LRO_presentation.pdf) (PDF) on September 2, Systems Inc. November 11, 2022. Archived (https://web.archive.org/web/
2013. Retrieved October 20, 2013 – via Parleys. 20221221111958/https://helpx.adobe.com/acrobat/kb/supported-file-form
ats-acrobat-reader.html#main_2D_and_3D_formats__Acrobat_9_Pro_Ex
14. "Announcing no-cost access to the latest PDF standard: ISO 32000-2 tended__Adobe_3D_Reviewer_) from the original on December 21,
(PDF 2.0)" (https://pdfa.org/sponsored-standards) (Press release). PDF 2022. Retrieved January 12, 2023.
Association. June 16, 2023 [Updated; originally published 5 April 2023].
Archived (https://web.archive.org/web/20230923202322/https://pdfa.org/ 22. "JavaScript for Acrobat 3D | Adobe Acrobat Developer Center" (https://w
sponsored-standards/) from the original on September 23, 2023. eb.archive.org/web/20091112231130/https://www.adobe.com/devnet/acr
Retrieved October 6, 2023. obat/javascript_acrobt_3d.html). Adobe Systems Inc. Archived from the
original (https://www.adobe.com/devnet/acrobat/javascript_acrobt_3d.ht
ml) on November 12, 2009. Retrieved January 12, 2023.
23. Pravetz, Jim. "In Defense of COS, or Why I Love JSON and Hate XML" 32. "Is PDF accessible?" (https://www.washington.edu/doit/pdf-accessible?1
(https://web.archive.org/web/20140502013429/http://jimpravetz.com/blo 002=). DO-IT - Disabilities, Opportunities, Internetworking, and
g/2012/12/in-defense-of-cos/). jimpravetz.com. Archived from the original Technology. University of Washington. October 4, 2022. Archived (http
on May 2, 2014. s://web.archive.org/web/20230210114239/https://www.washington.edu/d
24. Adobe Systems, PDF Reference, pp. 39–40. oit/pdf-accessible?1002=) from the original on February 10, 2023.
Retrieved January 12, 2023.
25. PikePdf documentation. "Working with content streams" (https://pikepdf.r
eadthedocs.io/en/latest/topics/content_streams.html). Archived (https://w 33. "FreeMyPDF.com – Removes passwords from viewable PDFs" (http://fre
eb.archive.org/web/20220705084446/https://pikepdf.readthedocs.io/en/la emypdf.com/). freemypdf.com. Archived (https://web.archive.org/web/202
test/topics/content_streams.html) from the original on July 5, 2022. 10220014724/https://freemypdf.com/) from the original on February 20,
Retrieved May 8, 2022. 2021. Retrieved June 23, 2009.
26. "Adobe Developer Connection: PDF Reference and Adobe Extensions to 34. Kirk, Jeremy (December 4, 2008). "Adobe admits new PDF password
the PDF Specification" (https://web.archive.org/web/20061115132507/htt protection is weaker" (http://www.macworld.com/article/1137343/pdf.htm
ps://www.adobe.com/devnet/pdf/pdf_reference.html). Adobe Systems l). Macworld. IDG Communications Inc. Archived (https://web.archive.or
Inc. Archived from the original (https://www.adobe.com/devnet/pdf/pdf_re g/web/20170117225255/http://www.macworld.com/article/1137343/pdf.ht
ference.html) on November 15, 2006. Retrieved December 13, 2010. ml) from the original on January 17, 2017. Retrieved September 14,
27. Howard, Jacci. "Desktop Publishing: Base 14 Fonts – Definition" (https:// 2016.
web.archive.org/web/20160614134144/http://desktoppub.about.com/od/g 35. Guignard, Bryan. "How secure is PDF" (https://web.archive.org/web/200
lossary/g/base14fonts.htm). About.com Tech. Archived from the original 51024235303/https://www.cs.cmu.edu/~dst/Adobe/Gallery/PDFsecurity.p
(http://desktoppub.about.com/od/glossary/g/base14fonts.htm) on June df) (PDF). Carnegie Mellon University. Archived from the original (https://
14, 2016. www.cs.cmu.edu/~dst/Adobe/Gallery/PDFsecurity.pdf) (PDF) on October
28. Merz, Thomas (June 2003). "The PDF Font Aquarium" (https://web.archi 24, 2005.
ve.org/web/20110718231502/http://www.planetpdf.com/planetpdf/pdfs/pd 36. Merz, Thomas (November 2001). PDF Security Overview: Strengths and
f2k/03e/merz_fontaquarium.pdf) (PDF). Archived from the original on Weaknesses (https://web.archive.org/web/20101011050457/http://www.p
July 18, 2011. lanetpdf.com/planetpdf/pdfs/pdf2k/01W/merz_securitykeynote.pdf)
29. "PDF Blend Modes Addendum" (https://web.archive.org/web/2011101410 (PDF). PDF 2001 conference. Scottsdale/Arizona. Archived from the
0004/https://www.adobe.com/content/dam/Adobe/en/devnet/pdf/pdfs/pdf original on October 11, 2010.
_reference_archives/blend_modes.pdf) (PDF). Archived from the original 37. Adobe Systems Inc. (July 1, 2008). "Document Management – Portable
(https://www.adobe.com/content/dam/Adobe/en/devnet/pdf/pdfs/pdf_refe Document Format – Part 1: PDF 1.7, First Edition" (https://web.archive.or
rence_archives/blend_modes.pdf) (PDF) on October 14, 2011. Retrieved g/web/20081203002256/https://www.adobe.com/devnet/acrobat/pdfs/PD
January 12, 2023. F32000_2008.pdf) (PDF). Archived from the original (https://www.adobe.
30. "Tagged PDF Best Practice Guide: Syntax" (https://pdfa.org/wp-content/u com/devnet/acrobat/pdfs/PDF32000_2008.pdf) (PDF) on December 3,
ploads/2019/06/TaggedPDFBestPracticeGuideSyntax.pdf) (PDF). 2008. Retrieved January 12, 2023.
pdfa.org. PDF Association. June 2019. Retrieved June 24, 2024. 38. "PDF Insecurity Website" (https://pdf-insecurity.org/signature-shadow/sh
31. Johnson, Duff (April 22, 2004). "What is Tagged PDF?" (https://www.talki adow-attacks.html). pdf-insecurity.org. Archived (https://web.archive.org/
ngpdf.org/what-is-tagged-pdf/). Archived (https://web.archive.org/web/20 web/20230326024850/https://pdf-insecurity.org/signature-shadow/shado
040807132851/http://www.planetpdf.com/enterprise/article.asp?ContentI w-attacks.html) from the original on March 26, 2023. Retrieved
D=6067) from the original on August 7, 2004. January 12, 2023.
39. "ISO 32000-1:2008 Document management -- Portable document format 46. "PDF Accessibility Standards" (https://web.archive.org/web/2010052903
-- Part 1: PDF 1.7" (http://www.iso.org/iso/catalogue_detail.htm?csnumbe 5503/http://www.bbc.co.uk/guidelines/futuremedia/accessibility/accessibl
r=51502). International Organization for Standardization ISO. Archived (h e_pdf.shtml). 1.2. BBC. Archived from the original (https://www.bbc.co.u
ttps://web.archive.org/web/20170210072051/http://www.iso.org/iso/catalo k/guidelines/futuremedia/accessibility/accessible_pdf.shtml) on May 29,
gue_detail.htm?csnumber=51502) from the original on February 10, 2010. Retrieved January 12, 2023.
2017. Retrieved March 22, 2016. 47. "PDF Accessibility" (https://web.archive.org/web/20100527215445/http://
40. "ETSI TS 102 778-1 - Electronic Signatures and Infrastructures (ESI); www.csus.edu/training/handouts/workshops/creating_accessible_pdfs.pd
PDF Advanced Electronic Signature Profiles; Part 1: PAdES Overview - a f) (PDF). California State University. 2009. Archived from the original (htt
framework document for PAdES" (http://www.etsi.org/deliver/etsi_ts%5C p://www.csus.edu/training/handouts/workshops/creating_accessible_pdf
102700_102799%5C10277801%5C01.01.01_60%5Cts_10277801v0101 s.pdf) (PDF) on May 27, 2010. Retrieved January 12, 2023.
01p.pdf) (PDF). 1.1.1. European Telecommunications Standards Institute 48. "LibreOffice Help – Export as PDF" (https://help.libreoffice.org/7.4/en-US/
ETSI. July 2009. Archived (https://web.archive.org/web/2023030805253 text/shared/01/ref_pdf_export.html). Archived (https://web.archive.org/we
6/https://www.etsi.org/deliver/etsi_ts%5C102700_102799%5C1027780 b/20230112153247/https://help.libreoffice.org/7.4/en-US/text/shared/01/r
1%5C01.01.01_60%5Cts_10277801v010101p.pdf) (PDF) from the ef_pdf_export.html) from the original on January 12, 2023. Retrieved
original on March 8, 2023. Retrieved January 12, 2023. January 12, 2023.
41. "Links and attachments in PDFs" (https://helpx.adobe.com/uk/acrobat/usi 49. Z., Andrew (January 11, 2008). "Exporting PDF/A for long-term archiving"
ng/links-attachments-pdfs.html). Archived (https://web.archive.org/web/2 (http://www.oooninja.com/2008/01/generating-pdfa-for-long-term-archivin
0210423155713/https://helpx.adobe.com/uk/acrobat/using/links-attachm g.html). Archived (https://web.archive.org/web/20210224185200/https://w
ents-pdfs.html) from the original on April 23, 2021. Retrieved April 23, ww.oooninja.com/2008/01/generating-pdfa-for-long-term-archiving.html)
2021. from the original on February 24, 2021. Retrieved September 22, 2012.
42. "Getting Familiar with Adobe Reader > Understanding Preferences" (htt 50. Biersdorfer, J.D. (April 10, 2009). "Tip of the Week: Adobe Reader's
p://www.adobepress.com/articles/article.asp?p=412914). Adobe Press. 'Read Aloud' Feature" (http://gadgetwise.blogs.nytimes.com/2009/04/10/t
Pearson. September 2, 2005. Archived (https://web.archive.org/web/201 ip-of-the-week-adobe-readers-read-aloud-feature/). The New York
21023144614/https://www.adobepress.com/articles/article.asp?p=41291 Times. Archived (https://web.archive.org/web/20201122205912/https://ga
4) from the original on October 23, 2012. Retrieved January 12, 2023. dgetwise.blogs.nytimes.com/2009/04/10/tip-of-the-week-adobe-readers-r
43. "PDF Accessibility" (https://webaim.org/techniques/acrobat/). WebAIM. ead-aloud-feature/) from the original on November 22, 2020. Retrieved
Archived (https://web.archive.org/web/20230112153237/https://webaim.o January 12, 2023.
rg/techniques/acrobat/) from the original on January 12, 2023. Retrieved 51. "Accessing PDF documents with assistive technology: A screen reader
January 12, 2023. user's guide" (https://web.archive.org/web/20080728093103/https://www.
44. Clark, Joe (August 22, 2005). "Facts and Opinions About PDF adobe.com/accessibility/pdfs/accessing-pdf-sr.pdf) (PDF). Adobe
Accessibility" (http://www.alistapart.com/articles/pdf_accessibility). Systems Inc. Archived from the original (https://www.adobe.com/accessi
Archived (https://web.archive.org/web/20130124140051/http://alistapart.c bility/pdfs/accessing-pdf-sr.pdf) (PDF) on July 28, 2008. Retrieved
om/articles/pdf_accessibility) from the original on January 24, 2013. January 12, 2023.
Retrieved January 12, 2023. 52. "Gnu PDF – PDF Knowledge – Forms Data Format" (https://web.archive.
45. "Accessibility and PDF documents" (https://web.archive.org/web/201004 org/web/20130101054615/http://www.gnupdf.org/Forms_Data_Format).
27062242/http://wac.osu.edu/pdf/). Web Accessibility Center. The Ohio Archived from the original on January 1, 2013. Retrieved January 12,
State University. Archived from the original (http://wac.osu.edu/pdf/) on 2023.
April 27, 2010. Retrieved January 12, 2023.
53. "About PDF forms" (https://web.archive.org/web/20110429032948/http://l 60. "Developer Resources" (https://web.archive.org/web/20160227041714/ht
ivedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=formsPDF_ tp://partners.adobe.com/public/developer/support/topic_legal_notices.ht
02.html). Adobe Systems Inc. Archived from the original (http://livedocs.a ml). Adobe Systems Inc. Archived from the original (http://partners.adob
dobe.com/coldfusion/8/htmldocs/help.html?content=formsPDF_02.html) e.com/public/developer/support/topic_legal_notices.html) on February
on April 29, 2011. Retrieved February 19, 2010. 27, 2016.
54. Demling, Peter (July 1, 2008). "Convert XFA Form to AcroForm?" (https:// 61. Mladenov, Vladislav; Mainka, Christian; Meyer Zu Selhausen, Karsten;
community.adobe.com/t5/acrobat-sdk-discussions/convert-xfa-form-to-ac Grothe, Martin; Schwenk, Jörg (November 6, 2019). "1 Trillion Dollar
roform/td-p/1175365). Archived (https://web.archive.org/web/2023011215 Refund: How to Spoof PDF Signatures". Proceedings of the 2019 ACM
3241/https://community.adobe.com/t5/acrobat-sdk-discussions/convert-xf SIGSAC Conference on Computer and Communications Security (http
a-form-to-acroform/td-p/1175365) from the original on January 12, 2023. s://dl.acm.org/doi/10.1145/3319535.3339812). CCS '19. ACM Digital
Retrieved January 12, 2023. Library, ACM SIGSAC Conference on Computer and Communications
55. "Migrating from Adobe Acrobat forms to XML forms" (https://web.archive. Security. pp. 1–14. doi:10.1145/3319535.3339812 (https://doi.org/10.114
org/web/20101006151011/http://partners.adobe.com/public/developer/tip 5%2F3319535.3339812). ISBN 9781450367479. S2CID 199367545 (htt
s/topic_tip2.html). Archived from the original (http://partners.adobe.com/p ps://api.semanticscholar.org/CorpusID:199367545). Archived (https://we
ublic/developer/tips/topic_tip2.html) on October 6, 2010. Retrieved b.archive.org/web/20210426223722/https://dl.acm.org/doi/10.1145/3319
January 12, 2023. 535.3339812) from the original on April 26, 2021. Retrieved April 6, 2021.
56. "XML Forms Data Format Specification, version 2" (https://web.archive.or 62. Müller, Jens; Ising, Fabian; Mladenov, Vladislav; Mainka, Christian;
g/web/20180730100811/https://www.immagic.com/eLibrary/ARCHIVES/ Schinzel, Sebastian; Schwenk, Jörg (November 6, 2019). "Practical
TECH/ADOBE/A070914X.pdf) (PDF). September 2007. Archived from Decryption exFiltration: Breaking PDF Encryption". Proceedings of the
the original (https://www.immagic.com/eLibrary/ARCHIVES/TECH/ADOB 2019 ACM SIGSAC Conference on Computer and Communications
E/A070914X.pdf) (PDF) on July 30, 2018. Retrieved February 19, 2010. Security (https://dl.acm.org/doi/10.1145/3319535.3354214). CCS '19.
57. "ISO 19444-1:2019(en)" (https://www.iso.org/obp/ui/#iso:std:iso:19444:- ACM Digital Library, ACM SIGSAC Conference on Computer and
1:ed-2:v1:en). The International Organization for Standardization. Communications Security. pp. 15–29. doi:10.1145/3319535.3354214 (htt
Archived (https://web.archive.org/web/20160617031837/https://www.iso. ps://doi.org/10.1145%2F3319535.3354214). ISBN 9781450367479.
org/obp/ui/#iso:std:iso:19444:-1:ed-2:v1:en) from the original on June 17, S2CID 207959243 (https://api.semanticscholar.org/CorpusID:20795924
2016. Retrieved December 3, 2020. 3). Archived (https://web.archive.org/web/20210426223415/https://dl.ac
m.org/doi/10.1145/3319535.3354214) from the original on April 26, 2021.
58. Adobe Systems Incorporated (September 20, 2022). "Using Acrobat Retrieved April 6, 2021.
forms and form data on the web" (https://helpx.adobe.com/acrobat/kb/acr
obat-forms-form-data-web.html). Archived (https://web.archive.org/web/2 63. "Shadow Attacks: Hiding and Replacing Content in Signed PDFs" (http
0230112153235/https://helpx.adobe.com/acrobat/kb/acrobat-forms-form- s://www.ndss-symposium.org/ndss-paper/shadow-attacks-hiding-and-rep
data-web.html) from the original on January 12, 2023. Retrieved lacing-content-in-signed-pdfs/). Internet Society, The Network and
January 12, 2023. Distributed System Security Symposium. Archived (https://web.archive.or
g/web/20210421094100/https://www.ndss-symposium.org/ndss-paper/sh
59. "FDF Data Exchange Specification" (https://web.archive.org/web/200812 adow-attacks-hiding-and-replacing-content-in-signed-pdfs/) from the
03041943/https://www.adobe.com/devnet/acrobat/pdfs/fdf_data_exchang original on April 21, 2021. Retrieved April 6, 2021.
e.pdf) (PDF). February 8, 2007. Archived from the original (https://www.a
dobe.com/devnet/acrobat/pdfs/fdf_data_exchange.pdf) (PDF) on
December 3, 2008. Retrieved January 12, 2023.
64. "Processing Dangerous Paths – On Security and Privacy of the Portable 71. Pathak, Khamosh (October 7, 2017). "How to Create a PDF from Web
Document Format" (https://www.ndss-symposium.org/ndss-paper/proces Page on iPhone and iPad in iOS 11" (https://ijunkie.com/how-to-create-p
sing-dangerous-paths-on-security-and-privacy-of-the-portable-document- df-web-page-safari-iphone-ipad-ios-11/). iJunkie. Archived (https://web.ar
format/). Internet Society, The Network and Distributed System Security chive.org/web/20230112153246/https://ijunkie.com/how-to-create-pdf-we
Symposium. Archived (https://web.archive.org/web/20210421094018/htt b-page-safari-iphone-ipad-ios-11/) from the original on January 12, 2023.
ps://www.ndss-symposium.org/ndss-paper/processing-dangerous-paths- Retrieved January 12, 2023.
on-security-and-privacy-of-the-portable-document-format/) from the 72. "Description of 2007 Microsoft Office Suite Service Pack 2 (SP2)" (http
original on April 21, 2021. Retrieved April 6, 2021. s://web.archive.org/web/20090429212434/http://support.microsoft.com/k
65. "Portable Document Flaws 101" (https://www.blackhat.com/us-20/briefing b/953195). Microsoft. Archived from the original (http://support.microsoft.
s/schedule/#portable-document-flaws--20387). Blackhat. Archived (http com/kb/953195) on April 29, 2009. Retrieved January 12, 2023.
s://web.archive.org/web/20210409131634/https://www.blackhat.com/us-2 73. On 2014-04-02, a note dated February 10, 2009 referred to Current FSF
0/briefings/schedule/#portable-document-flaws--20387) from the original High Priority Free Software Projects (http://www.fsf.org/campaigns/priorit
on April 9, 2021. Retrieved April 6, 2021. y.html) Archived (https://web.archive.org/web/20070810230457/http://ww
66. "Can PDFs have viruses? Keep your files safe" (https://www.adobe.com/ w.fsf.org/campaigns/priority.html) August 10, 2007, at the Wayback
acrobat/resources/can-pdfs-contain-viruses.html). Adobe. Archived (http Machine as a source. Content of the latter page, however, changes over
s://web.archive.org/web/20231004120143/https://www.adobe.com/acrob time.
at/resources/can-pdfs-contain-viruses.html) from the original on October 74. "Goals and Motivations" (https://web.archive.org/web/20140704114405/h
4, 2023. Retrieved October 3, 2023. ttp://www.gnupdf.org/Goals_and_Motivations). gnupdf.org. GNUpdf.
67. Adobe Forums, Announcement: PDF Attachment Virus "Peachy" (https:// November 28, 2007. Archived from the original on July 4, 2014.
forums.adobe.com/thread/302989) Archived (https://web.archive.org/we Retrieved April 2, 2014.
b/20150904151955/https://forums.adobe.com/thread/302989) 75. Lee, Matt (October 6, 2011). "GNU PDF project leaves FSF High Priority
September 4, 2015, at the Wayback Machine, August 15, 2001. Projects list; mission complete!" (http://www.fsf.org/blogs/community/gnu-
68. "Security bulletins and advisories" (https://helpx.adobe.com/security.html pdf-project-leaves-high-priority-projects-list-mission-complete). fsf.org.
#readerwin). Adobe Systems Inc. January 10, 2023. Archived (https://we Free Software Foundation. Archived (https://web.archive.org/web/201412
b.archive.org/web/20100406041941/http://www.adobe.com/support/secu 28050435/http://www.fsf.org/blogs/community/gnu-pdf-project-leaves-hig
rity/#readerwin) from the original on April 6, 2010. Retrieved January 12, h-priority-projects-list-mission-complete) from the original on December
2023. 28, 2014.
69. Gibson, Steve; Laporte, Leo (March 12, 2009). "Steve Gibson – 76. "Poppler Homepage" (http://poppler.freedesktop.org/). Archived (https://w
SecurityNow Podcast" (https://www.grc.com/sn/sn-187.txt). Archived (htt eb.archive.org/web/20150108235708/http://poppler.freedesktop.org/)
ps://web.archive.org/web/20200508100301/https://www.grc.com/sn/sn-1 from the original on January 8, 2015. Retrieved January 12, 2023.
87.txt) from the original on May 8, 2020. Retrieved January 11, 2011. "Poppler is a PDF rendering library based on the xpdf-3.0 code base."
70. "Malicious PDFs Execute Code Without a Vulnerability" (https://web.archi 77. "Xpdf License" (http://cgit.freedesktop.org/poppler/poppler/tree/README
ve.org/web/20100404034752/http://blogs.pcmag.com/securitywatch/201 -XPDF). Archived (https://archive.today/20130414194348/http://cgit.freed
0/03/malicious_pdfs_execute_code_wi.php). PCMAG. Archived from the esktop.org/poppler/poppler/tree/README-XPDF) from the original on
original (http://blogs.pcmag.com/securitywatch/2010/03/malicious_pdfs_ April 14, 2013. Retrieved January 12, 2023. "Xpdf is licensed under the
execute_code_wi.php) on April 4, 2010. GNU General Public License (GPL), version 2 or 3."
78. "The Apache PDFBox project- Apache PDFBox 3.0.0 released" (https://p
dfbox.apache.org/). August 17, 2023. Archived (https://web.archive.org/w
eb/20230107234923/https://pdfbox.apache.org/) from the original on
January 7, 2023. Updated for new releases.
79. "Adobe PDF Print Engine" (https://www.adobe.com/products/pdfprintengi 83. "PDF as Standard Print Job Format" (https://web.archive.org/web/20091
ne/overview.html). Adobe Systems Inc. Archived (https://web.archive.org/ 114130224/https://www.linuxfoundation.org/collaborate/workgroups/open
web/20130822034446/http://www.adobe.com/products/pdfprintengine/ov printing/pdf_as_standard_print_job_format). The Linux Foundation. Linux
erview.html) from the original on August 22, 2013. Retrieved August 20, Foundation. October 23, 2009. Archived from the original (http://www.linu
2014. xfoundation.org/collaborate/workgroups/openprinting/pdf_as_standard_p
80. "Jaws® 3.0 PDF and PostScript RIP SDK" (https://web.archive.org/web/2 rint_job_format) on November 14, 2009. Retrieved January 12, 2023.
0160305090728/http://globalgraphics.com/products/jaws_rip). 84. Meuschke, Norman; Jagdale, Apurva; Spinde, Timo; Mitrović, Jelena;
globalgraphics.com. Archived from the original (http://www.globalgraphic Gipp, Bela (2023), Sserwanga, Isaac; Goulding, Anne; Moulaison-Sandy,
s.com/products/jaws_rip/) on March 5, 2016. Retrieved November 26, Heather; Du, Jia Tina (eds.), "A Benchmark of PDF Information
2010. Extraction Tools Using a Multi-task and Multi-domain Evaluation
81. "Harlequin MultiRIP" (https://web.archive.org/web/20140209215413/htt Framework for Academic Documents" (https://link.springer.com/10.1007/
p://www.globalgraphics.com/products/harlequin-multi-rip/). Archived from 978-3-031-28032-0_31), Information for a Better World: Normality,
the original (http://www.globalgraphics.com/products/harlequin-multi-rip) Virtuality, Physicality, Inclusivity, vol. 13972, Cham: Springer Nature
on February 9, 2014. Retrieved March 2, 2014. Switzerland, pp. 383–405, arXiv:2303.09957 (https://arxiv.org/abs/2303.0
82. "Press-Ready PDF Files" (https://web.archive.org/web/20090205151505/ 9957), doi:10.1007/978-3-031-28032-0_31 (https://doi.org/10.1007%2F9
78-3-031-28032-0_31), ISBN 978-3-031-28031-3
http://www.prepressx.com/). Archived from the original on February 5,
2009. Retrieved January 12, 2023. "For anyone interested in having their
graphic project commercially printed directly from digital files or PDFs."
Further reading
Hardy, M. R. B.; Brailsford, D. F. (2002). "Mapping and displaying structural transformations between XML and PDF" (https://web.archive.org/web/20170
324072906/https://www.cs.nott.ac.uk/~psadb1/Publications/Download/2002/Hardy02.pdf) (PDF). Proceedings of the 2002 ACM symposium on
Document engineering – DocEng '02. pp. 95–102. doi:10.1145/585058.585077 (https://doi.org/10.1145%2F585058.585077). ISBN 1-58113-594-7.
S2CID 9371237 (https://api.semanticscholar.org/CorpusID:9371237). Archived from the original (https://www.cs.nott.ac.uk/~psadb1/Publications/Downlo
ad/2002/Hardy02.pdf) (PDF) on March 24, 2017.
PDF 2.0 "ISO 32000-2:2020(en), Document management — Portable document format — Part 2: PDF 2.0" (https://www.iso.org/standard/75839.html).
International Organization for Standardization. Retrieved December 16, 2020.
PDF 2.0 "ISO 32000-2:2017(en), Document management — Portable document format — Part 2: PDF 2.0" (https://www.iso.org/standard/63534.html).
International Organization for Standardization. August 3, 2017. Retrieved January 31, 2019.
PDF 1.7 (ISO 32000-1:2008) (https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/PDF32000_2008.pdf)
PDF 1.7 (https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/pdfreference1.7old.pdf) and errata to 1.7 (https://web.archive.org/web/20220
306202833/https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdf_reference_archive/pdf_17_errata.pdf) at the Wayback Machine (archived
March 6, 2022)
PDF 1.6 (https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/pdfreference1.6.pdf) (ISBN 0-321-30474-8) and errata to 1.6 (https://web.arc
hive.org/web/20220306152230/https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdf_reference_archive/PDF16Errata.pdf) at the Wayback
Machine (archived March 6, 2022)
PDF 1.5 (https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/pdfreference1.5_v6.pdf) and errata to 1.5 (https://web.archive.org/web/2021
1222122128/https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdf_reference_archive/errata.txt) at the Wayback Machine (archived December
22, 2021)
PDF 1.4 (https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/pdfreference1.4.pdf) (ISBN 0-201-75839-3) and errata to 1.4 (https://web.arc
hive.org/web/20220306152229/https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdf_reference_archive/PDF14errata.txt) at the Wayback
Machine (archived March 6, 2022)
PDF 1.3 (https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/pdfreference1.3.pdf) (ISBN 0-201-61588-6) and errata to 1.3 (https://web.arc
hive.org/web/20220306152234/https://www.adobe.com/content/dam/acom/en/devnet/pdf/pdfs/PDFerrata.txt) at the Wayback Machine (archived March
6, 2022)
PDF 1.2 (https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/pdfreference1.2.pdf)
PDF 1.0 (https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/pdfreference1.0.pdf) (ISBN 0-201-62628-4)
External links
PDF Association (https://pdfa.org/) – The PDF Association is the industry association for software developers producing or processing PDF files.
PDF Specification Index (https://pdfa.org/resource/pdf-specification-index/) at the PDF Association
Adobe PDF 101: Summary of PDF (https://web.archive.org/web/20101007220449/http://partners.adobe.com/public/developer/tips/topic_tip31.html) at
the Wayback Machine (archived 2010-10-07)
Adobe: PostScript vs. PDF (https://web.archive.org/web/20160413212438/https://www.adobe.com/print/features/psvspdf/) at the Wayback Machine
(archived 2016-04-13) – Official introductory comparison of PS, EPS vs. PDF.
PDF Standards....transitioning the PDF specification from a de facto standard to a de jure standard (https://web.archive.org/web/20110424013530/http://
www.aiim.org/Resources/Archive/Magazine/2007-Jul-Aug/33448) at the Wayback Machine (archived 2011-04-24) – Information about PDF/E and
PDF/UA specification for accessible documents file format
PDF/A-1 ISO standard (https://www.iso.org/standard/38920.html) published by the International Organization for Standardization (with corrigenda)
PDF Reference and Adobe Extensions to the PDF Specification (https://web.archive.org/web/20210116133007/https://www.adobe.com/devnet/pdf/pdf_r
eference.html) at the Wayback Machine (archived 2021-01-16)
Portable Document Format: An Introduction for Programmers (http://preserve.mactech.com/articles/mactech/Vol.15/15.09/PDFIntro/index.html) –
Introduction to PDF vs. PostScript and PDF internals (up to v1.3)
The Camelot Paper (https://web.archive.org/web/20190422013101/http://www.planetpdf.com/enterprise/article.asp?ContentID=6519) at the Wayback
Machine (archived 2019-04-22) – the paper in which John Warnock outlined the project that created PDF
Everything you wanted to know about PDF but was afraid to ask (https://web.archive.org/web/20160118105015/http://river-valley.zeeba.tv/everything-yo
u-wanted-to-know-about-pdf-but-were-afraid-to-ask/) at the Wayback Machine (archived 2016-01-18) – recording of a talk by Leonard Rosenthol (https://
www.youtube.com/watch?v=poc9PVmFzpc) (45 mins) (Adobe Systems) at TUG 2007