Пдф файл как пишется

Portable Document Format

PDF file icon.svg

Adobe PDF icon

Filename extension .pdf
Internet media type
  • application/pdf,[1]
  • application/x-pdf
  • application/x-bzpdf
  • application-gzpdf
Type code PDF [1] (including a single space)
Uniform Type Identifier (UTI) com.adobe.pdf
Magic number %PDF
Developed by Adobe Inc. (1991–2008)
ISO (2008–)
Initial release 15 June 1993; 29 years ago
Latest release

2.0

Extended to PDF/A, PDF/E, PDF/UA, PDF/VT, PDF/X
Standard ISO 32000-2
Open format? Yes
Website www.iso.org/standard/75839.html

Portable Document Format (PDF), standardized as ISO 32000, is a file format developed by Adobe in 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-dimensional objects using U3D or PRC, and various other data formats. The PDF specification also provides for encryption and digital signatures, file attachments, and metadata to enable workflows requiring these features.

History[edit]

Adobe Systems made the PDF specification available free of charge in 1993. In the early years PDF was popular mainly in desktop publishing workflows, and competed with a variety of formats such as DjVu, Envoy, Common Ground Digital Paper, Farallon Replica and even Adobe’s own PostScript format.

PDF was a proprietary format controlled by Adobe until it was released as an open standard on July 1, 2008, and published by the International Organization for Standardization as ISO 32000-1:2008,[6][7] at which time control of the specification passed to an ISO Committee of volunteer industry experts. In 2008, Adobe published a Public Patent License to ISO 32000-1 granting royalty-free rights for all patents owned by Adobe that are necessary to make, use, sell, and distribute PDF-compliant implementations.[8]

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.[9] These proprietary technologies are not standardized and their specification is published only on Adobe’s website.[10][11][12] Many of them are also not supported by popular third-party implementations of PDF.

In December 2020, the second edition of PDF 2.0, ISO 32000-2:2020, was published, including clarifications, corrections and critical updates to normative references.[13] ISO 32000-2 does not include any proprietary technologies as normative references.[14]

Technical details[edit]

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
  • Multimedia objects in the document.

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.

PDF combines three technologies:

  • 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[edit]

PostScript is a page description language run in an interpreter to generate an image, a process requiring many resources. It can handle graphics and standard features of programming languages such as if statements and loop commands. PDF is largely based on PostScript but simplified to remove flow control features like these, while graphics commands equivalent to lineto remain.

Historically, the PostScript-like PDF code is generated from a source PostScript file. The graphics commands that are output by the PostScript code are collected and tokenized.[clarification needed] Any files, graphics, or fonts to which the document refers also are collected. Then, everything is compressed to a single file. Therefore, the entire PostScript world (fonts, layout, measurements) remains intact.[citation needed]

As a document format, PDF has several advantages over PostScript:

  • PDF contains tokenized and interpreted results of the PostScript source code, for direct correspondence between changes to items in the PDF page description and changes to the resulting page appearance.
  • PDF (from version 1.4) supports transparent graphics; PostScript does not.
  • PostScript is an interpreted programming language with an implicit global state, so instructions accompanying the description of one page can affect the appearance of any following page. Therefore, all preceding pages in a PostScript document must be processed to determine the correct appearance of a given page, whereas each page in a PDF document is unaffected by the others. As a result, PDF viewers allow the user to quickly jump to the final pages of a long document, whereas a PostScript viewer needs to process all pages sequentially before being able to display the destination page (unless the optional PostScript Document Structuring Conventions have been carefully compiled and included).

PDF 1.6 and later supports interactive 3D documents embedded in a PDF file: 3D drawings can be embedded using U3D or PRC and various other data formats.[15][16][17]

File format[edit]

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.[18] A COS tree file consists primarily of objects, of which there are nine types:[14]

  • Boolean values, representing true or false
  • Real numbers
  • Integers
  • Strings, enclosed within parentheses ((...)) or represented as hexadecimal within single angle brackets (<...>). Strings may contain 8-bit characters.
  • Names, starting with a forward slash (/)
  • Arrays, ordered collections of objects enclosed within square brackets ([...])
  • Dictionaries, collections of objects indexed by names enclosed within double angle brackets (<<...>>)
  • Streams, usually containing large amounts of optionally compressed binary data, preceded by a dictionary and enclosed between the stream and endstream keywords.
  • The null object

Furthermore, there may be comments, introduced with the percent sign (%). Comments may contain 8-bit characters.

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.[19] 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.[20]

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.[21] PDF files may be optimized using Adobe Acrobat software or QPDF.

Imaging model[edit]

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[edit]

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[edit]

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:

  • ASCII85Decode, a filter used to put the stream into 7-bit ASCII,
  • ASCIIHexDecode, similar to ASCII85Decode but less compact,
  • FlateDecode, a commonly used filter based on the deflate algorithm defined in RFC 1951 (deflate is also used in the gzip, PNG, and zip file formats among others); introduced in PDF 1.2; it can use one of two groups of predictor functions for more compact zlib/deflate compression: Predictor 2 from the TIFF 6.0 specification and predictors (filters) from the PNG specification (RFC 2083),
  • LZWDecode, a filter based on LZW Compression; it can use one of two groups of predictor functions for more compact LZW compression: Predictor 2 from the TIFF 6.0 specification and predictors (filters) from the PNG specification,
  • RunLengthDecode, a simple compression method for streams with repetitive data using the run-length encoding algorithm and the image-specific filters,
  • DCTDecode, a lossy filter based on the JPEG standard,
  • CCITTFaxDecode, a lossless bi-level (black/white) filter based on the Group 3 or Group 4 CCITT (ITU-T) fax compression standard defined in ITU-T T.4 and T.6,
  • JBIG2Decode, a lossy or lossless bi-level (black/white) filter based on the JBIG2 standard, introduced in PDF 1.4, and
  • JPXDecode, a lossy or lossless filter based on the JPEG 2000 standard, introduced in PDF 1.5.

Normally all image content in a PDF is embedded in the file. But PDF allows image data to be stored in external files by the use of external streams or Alternate Images. Standardized subsets of PDF, including PDF/A and PDF/X, prohibit these features.

Text[edit]

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:

  • Times (v3) (in regular, italic, bold, and bold italic)
  • Courier (in regular, oblique, bold and bold oblique)
  • Helvetica (v3) (in regular, oblique, bold and bold oblique)
  • Symbol
  • Zapf Dingbats

These fonts are sometimes called the base fourteen fonts.[22] These fonts, or suitable substitute fonts with the same metrics, should be available in most PDF readers, but they are not guaranteed to be available in the reader, and may only display correctly if the system has them installed.[23] Fonts may be substituted if they are not embedded in a PDF.

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).[24] 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.

Transparency[edit]

The original imaging model of PDF was, like PostScript’s, opaque: 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 view 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.[25]

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[edit]

Logical structure and accessibility[edit]

A «tagged» PDF (see clause 14.8 in ISO 32000) includes document structure and semantics information to enable reliable text extraction and accessibility. Technically speaking, tagged PDF is a stylized use of the format that builds on the logical structure framework introduced in PDF 1.3. Tagged PDF defines a set of standard structure types and attributes that allow page content (text, graphics, and images) to be extracted and reused for other purposes.[26]

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 amongst consuming devices, including assistive technology (AT), is uneven as of 2021.[27] 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.

Optional Content Groups (layers)[edit]

With the introduction of PDF version, 1.5 (2003) came the concept of Layers. Layers, or as they are more formally known Optional Content Groups (OCGs), refer to sections of content in a PDF document that can be selectively viewed or hidden by document authors or viewers. This capability is useful in CAD drawings, layered artwork, maps, multi-language documents, etc.

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.

Encryption and signatures[edit]

A PDF file may be encrypted, for security, in which case a password is needed to view or edit the contents. PDF 2.0 defines 256-bit AES encryption as standard for PDF 2.0 files. The PDF Reference also defines ways that third parties can define their own encryption systems for PDF.

PDF files may be digitally signed, to provide secure authentication; complete details on implementing digital signatures in PDF is 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.[28] 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.[29][30][31]

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:[32]

  • To save the PDF document along with a modified form and/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.[32]

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.[33]

PAdES (PDF Advanced Electronic Signatures) is a set of restrictions and extensions to PDF and ISO 32000-1[34] making it suitable for advanced electronic signatures. This is published by ETSI as TS 102 778.[35]

File attachments[edit]

PDF files can have file attachments which processors may access and open or save to a local filesystem.[36]

Metadata[edit]

PDF files can contain two types of metadata.[37] 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 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, 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.[38] The free Adobe Reader cannot remove these settings.

Accessibility[edit]

PDF files can be created specifically to be accessible for people with disabilities.[39][40][41][42][43] 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.[44][45] Leading screen readers, including JAWS, Window-Eyes, Hal, and Kurzweil 1000 and 3000 can read tagged PDF.[46][47] 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[edit]

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, can be added images, links to the website and buttons to order directly from there.

Forms[edit]

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:[32][48][49][50]

  • 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.[51] XFA was deprecated from PDF with PDF 2.0.

AcroForms were introduced in the PDF 1.2 format. AcroForms permit using 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):[32]

HTML Form format
HTML 4.01 Specification since PDF 1.5; HTML 2.0 since 1.2
Forms Data Format (FDF)
based on PDF, uses the same syntax and has essentially the same file structure, but is much simpler than PDF since the body of an FDF document consists of only one required object. Forms Data Format is defined in the PDF specification (since PDF 1.2). The Forms Data Format can be used when submitting form data to a server, receiving the response, and incorporating it into the interactive form. It can also be used to export form data to stand-alone files that can be imported back into the corresponding PDF interactive form. FDF was originally defined in 1996 as part of ISO 32000-2:2017.[citation needed]
XML Forms Data Format (XFDF)
(external XML Forms Data Format Specification, Version 2.0; supported since PDF 1.5; it replaced the «XML» form submission format defined in PDF 1.4) the XML version of Forms Data Format, but the XFDF implements only a subset of FDF containing forms and annotations. Some entries in the FDF dictionary do not have XFDF equivalents – such as the Status, Encoding, JavaScript, Page’s keys, EmbeddedFDFs, Differences, and Target. In addition, XFDF does not allow the spawning, or addition, of new pages based on the given data; as can be done when using an FDF file. The XFDF specification is referenced (but not included) in PDF 1.5 specification (and in later versions). It is described separately in XML Forms Data Format Specification.[52] The PDF 1.4 specification allowed form submissions in XML format, but this was replaced by submissions in XFDF format in the PDF 1.5 specification. XFDF conforms to the XML standard. XFDF can be used in the same way as FDF; e.g., form data is submitted to a server, modifications are made, then sent back and the new form data is imported in an interactive form. It can also be used to export form data to stand-alone files that can be imported back into the corresponding PDF interactive form. As of August, 2019, XFDF 3.0 is an ISO/IEC standard under the formal name ISO 19444-1:2019 — Document management — XML Forms Data Format — Part 1: Use of ISO 32000-2 (XFDF 3.0).[53] This standard is a normative reference of ISO 32000-2.
PDF

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.[54][52][55] 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.[32]

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[edit]

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.[56]

Security[edit]

In November 2019, researchers from Ruhr University Bochum and Hackmanit GmbH published attacks on digitally signed PDFs .[57] 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.[58] In 2021, they showed new so-called shadow attacks on PDFs that abuse the flexibility of features provided in the specification.[59] 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.[60][61]

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.[62]

From time to time, new vulnerabilities are discovered in various versions of Adobe Reader,[63] 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.[64] 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.[65]

Software[edit]

Viewers and editors[edit]

PDF viewers are generally provided free of charge, and many versions are available from a variety of sources.

There are many software options for creating PDFs, including the PDF printing capabilities built into macOS, iOS,[66] and most Linux distributions, LibreOffice, Microsoft Office 2007 (if updated to SP2) and later,[67] WordPerfect 9, Scribus, numerous 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. Google’s online office suite Google Docs allows for uploading and saving to PDF. Some web apps offer free PDF editing and annotation tools.

The Free Software Foundation once thought of as one of their high priority projects to be «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.»[68][69] In 2011, however, the GNU PDF project was removed from the list of «high priority projects» due to the maturation of the Poppler library,[70] which has enjoyed wider use in applications such as Evince with the GNOME desktop environment. Poppler is based on Xpdf[71][72] 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 for working with PDF documents. PDFBox is licensed under the Apache License.[73]

Printing[edit]

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 rasterisation. RIPs capable of processing PDF directly include the Adobe PDF Print Engine[74] from Adobe Systems and Jaws[75] 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 their Harlequin RIP with the same capability in 1997.[76]

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.[77] 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.[78]

Some desktop printers also support direct PDF printing, which can interpret PDF data without external help.

Native display model[edit]

PDF was selected as the «native» metafile format for Mac OS X, replacing the PICT format of the earlier classic Mac OS. The imaging model of the Quartz graphics layer is based on the model common to Display PostScript and PDF, leading to the nickname Display PDF. The Preview application can display PDF files, as can version 2.0 and later of the Safari web browser. System-level support for PDF allows Mac OS X applications to create PDF documents automatically, provided they support the OS-standard printing architecture. The files are then exported in PDF 1.3 format according to the file header. When taking a screenshot under Mac OS X versions 10.0 through 10.3, the image was also captured as a PDF; later versions save screen captures as a PNG file, though this behavior can be set back to PDF if desired.

Annotation[edit]

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 documents formats. In cases where PDFs are expected to have all of the functionality of paper documents, ink annotation is required.

Alternatives[edit]

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[edit]

  • Web document
  • XSL Formatting Objects

References[edit]

  1. ^ a b Hardy, M.; Masinter, L.; Markovic, D.; Johnson, D.; Bailey, M. (2017), The application/pdf Media Type, doi:10.17487/RFC8118, RFC 8118
  2. ^ Adobe Systems Incorporated, PDF Reference, Sixth edition, version 1.23 (53 MB), Nov 2006, p. 33. Archive [1]
  3. ^ «The Camelot Project» (PDF). Archived from the original on 2011-07-18. Retrieved 2022-07-25.{{cite web}}: CS1 maint: unfit URL (link)
  4. ^ «What is a PDF? Portable Document Format | Adobe Acrobat DC». www.adobe.com. Retrieved 2021-09-17.
  5. ^ «ISO 32000-1:2008» (PDF). Archived from the original (PDF) on 2018-07-26.
  6. ^ «ISO 32000-1:2008 – Document management – Portable document format – Part 1: PDF 1.7». ISO. 2008-07-01. Retrieved 2010-02-21.
  7. ^ Orion, Egan (2007-12-05). «PDF 1.7 is approved as ISO 32000». The Inquirer. Archived from the original on December 13, 2007. Retrieved 2007-12-05.
  8. ^ Public Patent License, ISO 32000-1: 2008 – PDF 1.7 (PDF), Adobe Systems Inc, 2008, retrieved 2011-07-06
  9. ^ «Guide for the procurement of standards-based ICT – Elements of Good Practice, Against lock-in: building open ICT systems by making better use of standards in public procurement». European Commission. 2013-06-25. Retrieved 2013-10-20. Example: ISO/IEC 29500, ISO/IEC 26300 and ISO 32000 for document formats reference information that is not accessible by all parties (references to proprietary technology and brand names, incomplete scope or dead web links).
  10. ^ «ISO/TC 171/SC 2/WG 8 N 603 – Meeting Report» (PDF), Edit me, 2011-06-27, archived from the original (PDF) on 2012-11-26 – via Archive, XFA is not to be ISO standard just yet. The Committee urges Adobe Systems to submit the XFA Specification, XML Forms Architecture (XFA), to ISO for standardization The Committee is concerned about the stability of the XFA specification Part 2 will reference XFA 3.1
  11. ^ «Embedding and publishing interactive, 3-dimensional, scientific figures in Portable Document Format (PDF) files». PLOS ONE. 8 (9). 2013. doi:10.1371/journal.pone.0069446.s001. the implementation of the U3D standard was not complete and proprietary extensions were used.
  12. ^ Leonard Rosenthol (2012). «PDF and Standards» (PDF). Adobe Systems. Archived from the original (PDF) on 2013-09-02. Retrieved 2013-10-20 – via Parleys.
  13. ^ «ISO 32000-2:2020 is now available». PDFA. 14 December 2020. Retrieved 2021-02-03.
  14. ^ a b «ISO 32000-2 – Document management — Portable document format — Part 2: PDF 2.0». ISO. Retrieved 2021-02-03.
  15. ^ «3D supported formats». Adobe. 2009-07-14. Archived from the original on 2010-02-12. Retrieved 2010-02-21.
  16. ^ «Supported file formats in Acrobat and Reader». helpx.adobe.com. Retrieved 2020-03-22.
  17. ^ «JavaScript for Acrobat 3D | Adobe Acrobat Developer Center». www.adobe.com. Retrieved 2020-03-22.
  18. ^ Pravetz, Jim. «In Defense of COS, or Why I Love JSON and Hate XML». jimpravetz.com. Archived from the original on 2014-05-02.{{cite web}}: CS1 maint: unfit URL (link)
  19. ^ Adobe Systems, PDF Reference, pp. 39–40.
  20. ^ «Working with content streams».pikepdf documentation.
  21. ^ «Adobe Developer Connection: PDF Reference and Adobe Extensions to the PDF Specification». Adobe Systems. Retrieved 2010-12-13.
  22. ^ Howard, Jacci. «Desktop Publishing: Base 14 Fonts – Definition». About.com Tech. Archived from the original on June 14, 2016.
  23. ^ «The PDF Font Aquarium» (PDF).
  24. ^ «PDF Reference Sixth Edition, version 1.7, table 5.11» (PDF).
  25. ^ «PDF Blend Modes Addendum» (PDF).
  26. ^ Duff Johnson, April 22, 2004 What is Tagged PDF?
  27. ^ «Is PDF accessible?». DO-IT — Disabilities, Opportunities, Internetworking, and Technology. washington.edu. 8 April 2021.
  28. ^ «FreeMyPDF.com – Removes passwords from viewable PDFs». freemypdf.com.
  29. ^ Jeremy Kirk (December 5, 2008). «Adobe admits new PDF password protection is weaker». Macworld.
  30. ^ Bryan Guignard. «How secure is PDF» (PDF).
  31. ^ «PDF Security Overview: Strengths and Weaknesses» (PDF).
  32. ^ a b c d e Adobe Systems Incorporated (2008-07-01), Document Management – Portable Document Format – Part 1: PDF 1.7, First Edition (PDF), retrieved 2010-02-19
  33. ^ «PDF Insecurity Website». pdf-insecurity.org.
  34. ^ «ISO 32000-1:2008 Document management — Portable document format — Part 1: PDF 1.7». International Organization for Standardization ISO. Retrieved 22 March 2016.
  35. ^ «ETSI TS 102 778-1 V1.1.1 (2009-07): Electronic Signatures and Infrastructures (ESI); PDF Advanced Electronic Signature Profiles; Part 1: PAdES Overview — a framework document for PAdES» (PDF). European Telecommunications Standards Institute ETSI. Retrieved 22 March 2016.
  36. ^ «Links and attachments in PDFs».
  37. ^ Adobe PDF reference version 1.7, section 10.2
  38. ^ «Getting Familiar with Adobe Reader > Understanding Preferences». Retrieved 2009-04-22.
  39. ^ «PDF Accessibility». WebAIM. Retrieved 2010-04-24.
  40. ^ Joe Clark (2005-08-22). «Facts and Opinions About PDF Accessibility». Retrieved 2010-04-24.
  41. ^ «Accessibility and PDF documents». Web Accessibility Center. Archived from the original on 2010-04-27. Retrieved 2010-04-24.
  42. ^ «PDF Accessibility Standards v1.2». Retrieved 2010-04-24.
  43. ^ PDF Accessibility (PDF), California State University, archived from the original (PDF) on 2010-05-27, retrieved 2010-04-24
  44. ^ LibreOffice Help – Export as PDF, retrieved 2012-09-22
  45. ^ Exporting PDF/A for long-term archiving, 2008-01-11
  46. ^ Biersdorfer, J.D. (2009-04-10). «Tip of the Week: Adobe Reader’s ‘Read Aloud’ Feature». The New York Times. Retrieved 2010-04-24.
  47. ^ Accessing PDF documents with assistive technology: A screen reader user’s guide (PDF), Adobe, retrieved 2010-04-24
  48. ^ «Gnu PDF – PDF Knowledge – Forms Data Format». Archived from the original on 2013-01-01. Retrieved 2010-02-19.
  49. ^ «About PDF forms». Archived from the original on 2011-04-29. Retrieved 2010-02-19.
  50. ^ Demling, Peter (July 1, 2008). «Convert XFA Form to AcroForm?». Retrieved 2010-02-19.
  51. ^ «Migrating from Adobe Acrobat forms to XML forms». Archived from the original on 2010-10-06. Retrieved 2010-02-22.
  52. ^ a b XML Forms Data Format Specification, version 2 (PDF), September 2007, archived from the original (PDF) on 2018-07-30, retrieved 2010-02-19
  53. ^ «ISO 19444-1:2019(en)». www.iso.org. Retrieved 3 December 2020.
  54. ^ Adobe Systems Incorporated (2007-10-15). «Using Acrobat forms and form data on the web». Retrieved 2010-02-19.
  55. ^ FDF Data Exchange Specification (PDF), 2007-02-08, retrieved 2010-02-19
  56. ^ «Developer Resources». adobe.com. Archived from the original on 2016-02-27.
  57. ^ 1 Trillion Dollar Refund: How To Spoof PDF Signatures. CCS ’19. ACM Digital Library, ACM SIGSAC Conference on Computer and Communications Security. 6 November 2019. pp. 1–14. doi:10.1145/3319535.3339812. ISBN 9781450367479. S2CID 199367545.
  58. ^ Practical Decryption exFiltration: Breaking PDF Encryption. CCS ’19. ACM Digital Library, ACM SIGSAC Conference on Computer and Communications Security. 6 November 2019. pp. 15–29. doi:10.1145/3319535.3354214. ISBN 9781450367479. S2CID 207959243.
  59. ^ «Shadow Attacks: Hiding and Replacing Content in Signed PDFs». Internet Society, The Network and Distributed System Security Symposium.
  60. ^ «Processing Dangerous Paths – On Security and Privacy of the Portable Document Format». Internet Society, The Network and Distributed System Security Symposium.
  61. ^ «Portable Document Flaws 101». Blackhat.
  62. ^ Adobe Forums, Announcement: PDF Attachment Virus «Peachy», 15 August 2001.
  63. ^ «Security bulletins and advisories». Adobe. Retrieved 2010-02-21.
  64. ^ «Steve Gibson – SecurityNow Podcast».
  65. ^ «Malicious PDFs Execute Code Without a Vulnerability». PCMAG. Archived from the original on 4 April 2010.
  66. ^ Pathak, Khamosh (October 7, 2017). «How to Create a PDF from Web Page on iPhone and iPad in iOS 11». iPhone Hacks. Retrieved February 2, 2018.
  67. ^ «Description of 2007 Microsoft Office Suite Service Pack 2 (SP2)». Microsoft. Archived from the original on 29 April 2009. Retrieved 2009-05-09.
  68. ^ On 2014-04-02, a note dated 2009-02-10 referred to Current FSF High Priority Free Software Projects as a source. Content of the latter page, however, changes over time.
  69. ^ «Goals and Motivations». gnupdf.org. GNUpdf. 2007-11-28. Retrieved 2014-04-02.
  70. ^ Lee, Matt (2011-10-06). «GNU PDF project leaves FSF High Priority Projects list; mission complete!». fsf.org. Free Software Foundation. Retrieved 2014-04-02.
  71. ^ Poppler homepage «Poppler is a PDF rendering library based on the xpdf-3.0 code base.» (last checked on 2009-02-10)
  72. ^ Xpdf license «Xpdf is licensed under the GNU General Public License (GPL), version 2 or 3.» (last checked on 2012-09-23).
  73. ^ The Apache PDFBox project . Retrieved 2009-09-19.
  74. ^ «Adobe PDF Print Engine». adobe.com.
  75. ^ «Jaws® 3.0 PDF and PostScript RIP SDK». globalgraphics.com. Archived from the original on 2016-03-05. Retrieved 2010-11-26.
  76. ^ «Harlequin MultiRIP». Archived from the original on 2014-02-09. Retrieved 2014-03-02.
  77. ^ Press-Ready PDF Files «For anyone interested in having their graphic project commercially printed directly from digital files or PDFs.» (last checked on 2009-02-10).
  78. ^ «PDF as Standard Print Job Format». The Linux Foundation. Linux Foundation. Retrieved 21 June 2016.

Further reading[edit]

  • Hardy, M. R. B.; Brailsford, D. F. (2002). «Mapping and displaying structural transformations between XML and PDF». Proceedings of the 2002 ACM symposium on Document engineering – DocEng ’02 (PDF). Proceedings of the 2002 ACM symposium on Document engineering. pp. 95–102. doi:10.1145/585058.585077. ISBN 1-58113-594-7. S2CID 9371237.[relevant?]
  • PDF 2.0 «ISO 32000-2:2020(en), Document management — Portable document format — Part 2: PDF 2.0». www.iso.org. Retrieved 2020-12-16.
  • PDF 2.0 «ISO 32000-2:2017(en), Document management — Portable document format — Part 2: PDF 2.0». www.iso.org. Retrieved 2019-01-31.
  • PDF 1.7 (ISO 32000-1:2008)
  • PDF 1.7 and errata to 1.7
  • PDF 1.6 (ISBN 0-321-30474-8) and errata to 1.6
  • PDF 1.5 and errata to 1.5
  • PDF 1.4 (ISBN 0-201-75839-3) and errata to 1.4
  • PDF 1.3 (ISBN 0-201-61588-6) and errata to 1.3

External links[edit]

  • PDF Association – The PDF Association is the industry association for software developers producing or processing PDF files.
  • Adobe PDF 101: Summary of PDF
  • Adobe: PostScript vs. PDF – Official introductory comparison of PS, EPS vs. PDF.
  • PDF Standards….transitioning the PDF specification from a de facto standard to a de jure standard at the Wayback Machine (archived April 24, 2011) – Information about PDF/E and PDF/UA specification for accessible documents file format (archived by The Wayback Machine)
  • PDF/A-1 ISO standard published by the International Organization for Standardization (with corrigenda)
  • PDF Reference and Adobe Extensions to the PDF Specification
  • Portable Document Format: An Introduction for Programmers – Introduction to PDF vs. PostScript and PDF internals (up to v1.3)
  • The Camelot Paper – the paper in which John Warnock outlined the project that created PDF
  • Everything you wanted to know about PDF but was afraid to ask – recording of a talk by Leonard Rosenthol (45 mins) (Adobe Systems) at TUG 2007
Portable Document Format

PDF file icon.svg

Adobe PDF icon

Filename extension .pdf
Internet media type
  • application/pdf,[1]
  • application/x-pdf
  • application/x-bzpdf
  • application-gzpdf
Type code PDF [1] (including a single space)
Uniform Type Identifier (UTI) com.adobe.pdf
Magic number %PDF
Developed by Adobe Inc. (1991–2008)
ISO (2008–)
Initial release 15 June 1993; 29 years ago
Latest release

2.0

Extended to PDF/A, PDF/E, PDF/UA, PDF/VT, PDF/X
Standard ISO 32000-2
Open format? Yes
Website www.iso.org/standard/75839.html

Portable Document Format (PDF), standardized as ISO 32000, is a file format developed by Adobe in 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-dimensional objects using U3D or PRC, and various other data formats. The PDF specification also provides for encryption and digital signatures, file attachments, and metadata to enable workflows requiring these features.

History[edit]

Adobe Systems made the PDF specification available free of charge in 1993. In the early years PDF was popular mainly in desktop publishing workflows, and competed with a variety of formats such as DjVu, Envoy, Common Ground Digital Paper, Farallon Replica and even Adobe’s own PostScript format.

PDF was a proprietary format controlled by Adobe until it was released as an open standard on July 1, 2008, and published by the International Organization for Standardization as ISO 32000-1:2008,[6][7] at which time control of the specification passed to an ISO Committee of volunteer industry experts. In 2008, Adobe published a Public Patent License to ISO 32000-1 granting royalty-free rights for all patents owned by Adobe that are necessary to make, use, sell, and distribute PDF-compliant implementations.[8]

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.[9] These proprietary technologies are not standardized and their specification is published only on Adobe’s website.[10][11][12] Many of them are also not supported by popular third-party implementations of PDF.

In December 2020, the second edition of PDF 2.0, ISO 32000-2:2020, was published, including clarifications, corrections and critical updates to normative references.[13] ISO 32000-2 does not include any proprietary technologies as normative references.[14]

Technical details[edit]

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
  • Multimedia objects in the document.

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.

PDF combines three technologies:

  • 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[edit]

PostScript is a page description language run in an interpreter to generate an image, a process requiring many resources. It can handle graphics and standard features of programming languages such as if statements and loop commands. PDF is largely based on PostScript but simplified to remove flow control features like these, while graphics commands equivalent to lineto remain.

Historically, the PostScript-like PDF code is generated from a source PostScript file. The graphics commands that are output by the PostScript code are collected and tokenized.[clarification needed] Any files, graphics, or fonts to which the document refers also are collected. Then, everything is compressed to a single file. Therefore, the entire PostScript world (fonts, layout, measurements) remains intact.[citation needed]

As a document format, PDF has several advantages over PostScript:

  • PDF contains tokenized and interpreted results of the PostScript source code, for direct correspondence between changes to items in the PDF page description and changes to the resulting page appearance.
  • PDF (from version 1.4) supports transparent graphics; PostScript does not.
  • PostScript is an interpreted programming language with an implicit global state, so instructions accompanying the description of one page can affect the appearance of any following page. Therefore, all preceding pages in a PostScript document must be processed to determine the correct appearance of a given page, whereas each page in a PDF document is unaffected by the others. As a result, PDF viewers allow the user to quickly jump to the final pages of a long document, whereas a PostScript viewer needs to process all pages sequentially before being able to display the destination page (unless the optional PostScript Document Structuring Conventions have been carefully compiled and included).

PDF 1.6 and later supports interactive 3D documents embedded in a PDF file: 3D drawings can be embedded using U3D or PRC and various other data formats.[15][16][17]

File format[edit]

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.[18] A COS tree file consists primarily of objects, of which there are nine types:[14]

  • Boolean values, representing true or false
  • Real numbers
  • Integers
  • Strings, enclosed within parentheses ((...)) or represented as hexadecimal within single angle brackets (<...>). Strings may contain 8-bit characters.
  • Names, starting with a forward slash (/)
  • Arrays, ordered collections of objects enclosed within square brackets ([...])
  • Dictionaries, collections of objects indexed by names enclosed within double angle brackets (<<...>>)
  • Streams, usually containing large amounts of optionally compressed binary data, preceded by a dictionary and enclosed between the stream and endstream keywords.
  • The null object

Furthermore, there may be comments, introduced with the percent sign (%). Comments may contain 8-bit characters.

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.[19] 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.[20]

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.[21] PDF files may be optimized using Adobe Acrobat software or QPDF.

Imaging model[edit]

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[edit]

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[edit]

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:

  • ASCII85Decode, a filter used to put the stream into 7-bit ASCII,
  • ASCIIHexDecode, similar to ASCII85Decode but less compact,
  • FlateDecode, a commonly used filter based on the deflate algorithm defined in RFC 1951 (deflate is also used in the gzip, PNG, and zip file formats among others); introduced in PDF 1.2; it can use one of two groups of predictor functions for more compact zlib/deflate compression: Predictor 2 from the TIFF 6.0 specification and predictors (filters) from the PNG specification (RFC 2083),
  • LZWDecode, a filter based on LZW Compression; it can use one of two groups of predictor functions for more compact LZW compression: Predictor 2 from the TIFF 6.0 specification and predictors (filters) from the PNG specification,
  • RunLengthDecode, a simple compression method for streams with repetitive data using the run-length encoding algorithm and the image-specific filters,
  • DCTDecode, a lossy filter based on the JPEG standard,
  • CCITTFaxDecode, a lossless bi-level (black/white) filter based on the Group 3 or Group 4 CCITT (ITU-T) fax compression standard defined in ITU-T T.4 and T.6,
  • JBIG2Decode, a lossy or lossless bi-level (black/white) filter based on the JBIG2 standard, introduced in PDF 1.4, and
  • JPXDecode, a lossy or lossless filter based on the JPEG 2000 standard, introduced in PDF 1.5.

Normally all image content in a PDF is embedded in the file. But PDF allows image data to be stored in external files by the use of external streams or Alternate Images. Standardized subsets of PDF, including PDF/A and PDF/X, prohibit these features.

Text[edit]

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:

  • Times (v3) (in regular, italic, bold, and bold italic)
  • Courier (in regular, oblique, bold and bold oblique)
  • Helvetica (v3) (in regular, oblique, bold and bold oblique)
  • Symbol
  • Zapf Dingbats

These fonts are sometimes called the base fourteen fonts.[22] These fonts, or suitable substitute fonts with the same metrics, should be available in most PDF readers, but they are not guaranteed to be available in the reader, and may only display correctly if the system has them installed.[23] Fonts may be substituted if they are not embedded in a PDF.

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).[24] 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.

Transparency[edit]

The original imaging model of PDF was, like PostScript’s, opaque: 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 view 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.[25]

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[edit]

Logical structure and accessibility[edit]

A «tagged» PDF (see clause 14.8 in ISO 32000) includes document structure and semantics information to enable reliable text extraction and accessibility. Technically speaking, tagged PDF is a stylized use of the format that builds on the logical structure framework introduced in PDF 1.3. Tagged PDF defines a set of standard structure types and attributes that allow page content (text, graphics, and images) to be extracted and reused for other purposes.[26]

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 amongst consuming devices, including assistive technology (AT), is uneven as of 2021.[27] 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.

Optional Content Groups (layers)[edit]

With the introduction of PDF version, 1.5 (2003) came the concept of Layers. Layers, or as they are more formally known Optional Content Groups (OCGs), refer to sections of content in a PDF document that can be selectively viewed or hidden by document authors or viewers. This capability is useful in CAD drawings, layered artwork, maps, multi-language documents, etc.

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.

Encryption and signatures[edit]

A PDF file may be encrypted, for security, in which case a password is needed to view or edit the contents. PDF 2.0 defines 256-bit AES encryption as standard for PDF 2.0 files. The PDF Reference also defines ways that third parties can define their own encryption systems for PDF.

PDF files may be digitally signed, to provide secure authentication; complete details on implementing digital signatures in PDF is 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.[28] 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.[29][30][31]

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:[32]

  • To save the PDF document along with a modified form and/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.[32]

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.[33]

PAdES (PDF Advanced Electronic Signatures) is a set of restrictions and extensions to PDF and ISO 32000-1[34] making it suitable for advanced electronic signatures. This is published by ETSI as TS 102 778.[35]

File attachments[edit]

PDF files can have file attachments which processors may access and open or save to a local filesystem.[36]

Metadata[edit]

PDF files can contain two types of metadata.[37] 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 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, 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.[38] The free Adobe Reader cannot remove these settings.

Accessibility[edit]

PDF files can be created specifically to be accessible for people with disabilities.[39][40][41][42][43] 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.[44][45] Leading screen readers, including JAWS, Window-Eyes, Hal, and Kurzweil 1000 and 3000 can read tagged PDF.[46][47] 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[edit]

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, can be added images, links to the website and buttons to order directly from there.

Forms[edit]

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:[32][48][49][50]

  • 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.[51] XFA was deprecated from PDF with PDF 2.0.

AcroForms were introduced in the PDF 1.2 format. AcroForms permit using 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):[32]

HTML Form format
HTML 4.01 Specification since PDF 1.5; HTML 2.0 since 1.2
Forms Data Format (FDF)
based on PDF, uses the same syntax and has essentially the same file structure, but is much simpler than PDF since the body of an FDF document consists of only one required object. Forms Data Format is defined in the PDF specification (since PDF 1.2). The Forms Data Format can be used when submitting form data to a server, receiving the response, and incorporating it into the interactive form. It can also be used to export form data to stand-alone files that can be imported back into the corresponding PDF interactive form. FDF was originally defined in 1996 as part of ISO 32000-2:2017.[citation needed]
XML Forms Data Format (XFDF)
(external XML Forms Data Format Specification, Version 2.0; supported since PDF 1.5; it replaced the «XML» form submission format defined in PDF 1.4) the XML version of Forms Data Format, but the XFDF implements only a subset of FDF containing forms and annotations. Some entries in the FDF dictionary do not have XFDF equivalents – such as the Status, Encoding, JavaScript, Page’s keys, EmbeddedFDFs, Differences, and Target. In addition, XFDF does not allow the spawning, or addition, of new pages based on the given data; as can be done when using an FDF file. The XFDF specification is referenced (but not included) in PDF 1.5 specification (and in later versions). It is described separately in XML Forms Data Format Specification.[52] The PDF 1.4 specification allowed form submissions in XML format, but this was replaced by submissions in XFDF format in the PDF 1.5 specification. XFDF conforms to the XML standard. XFDF can be used in the same way as FDF; e.g., form data is submitted to a server, modifications are made, then sent back and the new form data is imported in an interactive form. It can also be used to export form data to stand-alone files that can be imported back into the corresponding PDF interactive form. As of August, 2019, XFDF 3.0 is an ISO/IEC standard under the formal name ISO 19444-1:2019 — Document management — XML Forms Data Format — Part 1: Use of ISO 32000-2 (XFDF 3.0).[53] This standard is a normative reference of ISO 32000-2.
PDF

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.[54][52][55] 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.[32]

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[edit]

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.[56]

Security[edit]

In November 2019, researchers from Ruhr University Bochum and Hackmanit GmbH published attacks on digitally signed PDFs .[57] 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.[58] In 2021, they showed new so-called shadow attacks on PDFs that abuse the flexibility of features provided in the specification.[59] 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.[60][61]

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.[62]

From time to time, new vulnerabilities are discovered in various versions of Adobe Reader,[63] 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.[64] 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.[65]

Software[edit]

Viewers and editors[edit]

PDF viewers are generally provided free of charge, and many versions are available from a variety of sources.

There are many software options for creating PDFs, including the PDF printing capabilities built into macOS, iOS,[66] and most Linux distributions, LibreOffice, Microsoft Office 2007 (if updated to SP2) and later,[67] WordPerfect 9, Scribus, numerous 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. Google’s online office suite Google Docs allows for uploading and saving to PDF. Some web apps offer free PDF editing and annotation tools.

The Free Software Foundation once thought of as one of their high priority projects to be «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.»[68][69] In 2011, however, the GNU PDF project was removed from the list of «high priority projects» due to the maturation of the Poppler library,[70] which has enjoyed wider use in applications such as Evince with the GNOME desktop environment. Poppler is based on Xpdf[71][72] 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 for working with PDF documents. PDFBox is licensed under the Apache License.[73]

Printing[edit]

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 rasterisation. RIPs capable of processing PDF directly include the Adobe PDF Print Engine[74] from Adobe Systems and Jaws[75] 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 their Harlequin RIP with the same capability in 1997.[76]

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.[77] 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.[78]

Some desktop printers also support direct PDF printing, which can interpret PDF data without external help.

Native display model[edit]

PDF was selected as the «native» metafile format for Mac OS X, replacing the PICT format of the earlier classic Mac OS. The imaging model of the Quartz graphics layer is based on the model common to Display PostScript and PDF, leading to the nickname Display PDF. The Preview application can display PDF files, as can version 2.0 and later of the Safari web browser. System-level support for PDF allows Mac OS X applications to create PDF documents automatically, provided they support the OS-standard printing architecture. The files are then exported in PDF 1.3 format according to the file header. When taking a screenshot under Mac OS X versions 10.0 through 10.3, the image was also captured as a PDF; later versions save screen captures as a PNG file, though this behavior can be set back to PDF if desired.

Annotation[edit]

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 documents formats. In cases where PDFs are expected to have all of the functionality of paper documents, ink annotation is required.

Alternatives[edit]

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[edit]

  • Web document
  • XSL Formatting Objects

References[edit]

  1. ^ a b Hardy, M.; Masinter, L.; Markovic, D.; Johnson, D.; Bailey, M. (2017), The application/pdf Media Type, doi:10.17487/RFC8118, RFC 8118
  2. ^ Adobe Systems Incorporated, PDF Reference, Sixth edition, version 1.23 (53 MB), Nov 2006, p. 33. Archive [1]
  3. ^ «The Camelot Project» (PDF). Archived from the original on 2011-07-18. Retrieved 2022-07-25.{{cite web}}: CS1 maint: unfit URL (link)
  4. ^ «What is a PDF? Portable Document Format | Adobe Acrobat DC». www.adobe.com. Retrieved 2021-09-17.
  5. ^ «ISO 32000-1:2008» (PDF). Archived from the original (PDF) on 2018-07-26.
  6. ^ «ISO 32000-1:2008 – Document management – Portable document format – Part 1: PDF 1.7». ISO. 2008-07-01. Retrieved 2010-02-21.
  7. ^ Orion, Egan (2007-12-05). «PDF 1.7 is approved as ISO 32000». The Inquirer. Archived from the original on December 13, 2007. Retrieved 2007-12-05.
  8. ^ Public Patent License, ISO 32000-1: 2008 – PDF 1.7 (PDF), Adobe Systems Inc, 2008, retrieved 2011-07-06
  9. ^ «Guide for the procurement of standards-based ICT – Elements of Good Practice, Against lock-in: building open ICT systems by making better use of standards in public procurement». European Commission. 2013-06-25. Retrieved 2013-10-20. Example: ISO/IEC 29500, ISO/IEC 26300 and ISO 32000 for document formats reference information that is not accessible by all parties (references to proprietary technology and brand names, incomplete scope or dead web links).
  10. ^ «ISO/TC 171/SC 2/WG 8 N 603 – Meeting Report» (PDF), Edit me, 2011-06-27, archived from the original (PDF) on 2012-11-26 – via Archive, XFA is not to be ISO standard just yet. The Committee urges Adobe Systems to submit the XFA Specification, XML Forms Architecture (XFA), to ISO for standardization The Committee is concerned about the stability of the XFA specification Part 2 will reference XFA 3.1
  11. ^ «Embedding and publishing interactive, 3-dimensional, scientific figures in Portable Document Format (PDF) files». PLOS ONE. 8 (9). 2013. doi:10.1371/journal.pone.0069446.s001. the implementation of the U3D standard was not complete and proprietary extensions were used.
  12. ^ Leonard Rosenthol (2012). «PDF and Standards» (PDF). Adobe Systems. Archived from the original (PDF) on 2013-09-02. Retrieved 2013-10-20 – via Parleys.
  13. ^ «ISO 32000-2:2020 is now available». PDFA. 14 December 2020. Retrieved 2021-02-03.
  14. ^ a b «ISO 32000-2 – Document management — Portable document format — Part 2: PDF 2.0». ISO. Retrieved 2021-02-03.
  15. ^ «3D supported formats». Adobe. 2009-07-14. Archived from the original on 2010-02-12. Retrieved 2010-02-21.
  16. ^ «Supported file formats in Acrobat and Reader». helpx.adobe.com. Retrieved 2020-03-22.
  17. ^ «JavaScript for Acrobat 3D | Adobe Acrobat Developer Center». www.adobe.com. Retrieved 2020-03-22.
  18. ^ Pravetz, Jim. «In Defense of COS, or Why I Love JSON and Hate XML». jimpravetz.com. Archived from the original on 2014-05-02.{{cite web}}: CS1 maint: unfit URL (link)
  19. ^ Adobe Systems, PDF Reference, pp. 39–40.
  20. ^ «Working with content streams».pikepdf documentation.
  21. ^ «Adobe Developer Connection: PDF Reference and Adobe Extensions to the PDF Specification». Adobe Systems. Retrieved 2010-12-13.
  22. ^ Howard, Jacci. «Desktop Publishing: Base 14 Fonts – Definition». About.com Tech. Archived from the original on June 14, 2016.
  23. ^ «The PDF Font Aquarium» (PDF).
  24. ^ «PDF Reference Sixth Edition, version 1.7, table 5.11» (PDF).
  25. ^ «PDF Blend Modes Addendum» (PDF).
  26. ^ Duff Johnson, April 22, 2004 What is Tagged PDF?
  27. ^ «Is PDF accessible?». DO-IT — Disabilities, Opportunities, Internetworking, and Technology. washington.edu. 8 April 2021.
  28. ^ «FreeMyPDF.com – Removes passwords from viewable PDFs». freemypdf.com.
  29. ^ Jeremy Kirk (December 5, 2008). «Adobe admits new PDF password protection is weaker». Macworld.
  30. ^ Bryan Guignard. «How secure is PDF» (PDF).
  31. ^ «PDF Security Overview: Strengths and Weaknesses» (PDF).
  32. ^ a b c d e Adobe Systems Incorporated (2008-07-01), Document Management – Portable Document Format – Part 1: PDF 1.7, First Edition (PDF), retrieved 2010-02-19
  33. ^ «PDF Insecurity Website». pdf-insecurity.org.
  34. ^ «ISO 32000-1:2008 Document management — Portable document format — Part 1: PDF 1.7». International Organization for Standardization ISO. Retrieved 22 March 2016.
  35. ^ «ETSI TS 102 778-1 V1.1.1 (2009-07): Electronic Signatures and Infrastructures (ESI); PDF Advanced Electronic Signature Profiles; Part 1: PAdES Overview — a framework document for PAdES» (PDF). European Telecommunications Standards Institute ETSI. Retrieved 22 March 2016.
  36. ^ «Links and attachments in PDFs».
  37. ^ Adobe PDF reference version 1.7, section 10.2
  38. ^ «Getting Familiar with Adobe Reader > Understanding Preferences». Retrieved 2009-04-22.
  39. ^ «PDF Accessibility». WebAIM. Retrieved 2010-04-24.
  40. ^ Joe Clark (2005-08-22). «Facts and Opinions About PDF Accessibility». Retrieved 2010-04-24.
  41. ^ «Accessibility and PDF documents». Web Accessibility Center. Archived from the original on 2010-04-27. Retrieved 2010-04-24.
  42. ^ «PDF Accessibility Standards v1.2». Retrieved 2010-04-24.
  43. ^ PDF Accessibility (PDF), California State University, archived from the original (PDF) on 2010-05-27, retrieved 2010-04-24
  44. ^ LibreOffice Help – Export as PDF, retrieved 2012-09-22
  45. ^ Exporting PDF/A for long-term archiving, 2008-01-11
  46. ^ Biersdorfer, J.D. (2009-04-10). «Tip of the Week: Adobe Reader’s ‘Read Aloud’ Feature». The New York Times. Retrieved 2010-04-24.
  47. ^ Accessing PDF documents with assistive technology: A screen reader user’s guide (PDF), Adobe, retrieved 2010-04-24
  48. ^ «Gnu PDF – PDF Knowledge – Forms Data Format». Archived from the original on 2013-01-01. Retrieved 2010-02-19.
  49. ^ «About PDF forms». Archived from the original on 2011-04-29. Retrieved 2010-02-19.
  50. ^ Demling, Peter (July 1, 2008). «Convert XFA Form to AcroForm?». Retrieved 2010-02-19.
  51. ^ «Migrating from Adobe Acrobat forms to XML forms». Archived from the original on 2010-10-06. Retrieved 2010-02-22.
  52. ^ a b XML Forms Data Format Specification, version 2 (PDF), September 2007, archived from the original (PDF) on 2018-07-30, retrieved 2010-02-19
  53. ^ «ISO 19444-1:2019(en)». www.iso.org. Retrieved 3 December 2020.
  54. ^ Adobe Systems Incorporated (2007-10-15). «Using Acrobat forms and form data on the web». Retrieved 2010-02-19.
  55. ^ FDF Data Exchange Specification (PDF), 2007-02-08, retrieved 2010-02-19
  56. ^ «Developer Resources». adobe.com. Archived from the original on 2016-02-27.
  57. ^ 1 Trillion Dollar Refund: How To Spoof PDF Signatures. CCS ’19. ACM Digital Library, ACM SIGSAC Conference on Computer and Communications Security. 6 November 2019. pp. 1–14. doi:10.1145/3319535.3339812. ISBN 9781450367479. S2CID 199367545.
  58. ^ Practical Decryption exFiltration: Breaking PDF Encryption. CCS ’19. ACM Digital Library, ACM SIGSAC Conference on Computer and Communications Security. 6 November 2019. pp. 15–29. doi:10.1145/3319535.3354214. ISBN 9781450367479. S2CID 207959243.
  59. ^ «Shadow Attacks: Hiding and Replacing Content in Signed PDFs». Internet Society, The Network and Distributed System Security Symposium.
  60. ^ «Processing Dangerous Paths – On Security and Privacy of the Portable Document Format». Internet Society, The Network and Distributed System Security Symposium.
  61. ^ «Portable Document Flaws 101». Blackhat.
  62. ^ Adobe Forums, Announcement: PDF Attachment Virus «Peachy», 15 August 2001.
  63. ^ «Security bulletins and advisories». Adobe. Retrieved 2010-02-21.
  64. ^ «Steve Gibson – SecurityNow Podcast».
  65. ^ «Malicious PDFs Execute Code Without a Vulnerability». PCMAG. Archived from the original on 4 April 2010.
  66. ^ Pathak, Khamosh (October 7, 2017). «How to Create a PDF from Web Page on iPhone and iPad in iOS 11». iPhone Hacks. Retrieved February 2, 2018.
  67. ^ «Description of 2007 Microsoft Office Suite Service Pack 2 (SP2)». Microsoft. Archived from the original on 29 April 2009. Retrieved 2009-05-09.
  68. ^ On 2014-04-02, a note dated 2009-02-10 referred to Current FSF High Priority Free Software Projects as a source. Content of the latter page, however, changes over time.
  69. ^ «Goals and Motivations». gnupdf.org. GNUpdf. 2007-11-28. Retrieved 2014-04-02.
  70. ^ Lee, Matt (2011-10-06). «GNU PDF project leaves FSF High Priority Projects list; mission complete!». fsf.org. Free Software Foundation. Retrieved 2014-04-02.
  71. ^ Poppler homepage «Poppler is a PDF rendering library based on the xpdf-3.0 code base.» (last checked on 2009-02-10)
  72. ^ Xpdf license «Xpdf is licensed under the GNU General Public License (GPL), version 2 or 3.» (last checked on 2012-09-23).
  73. ^ The Apache PDFBox project . Retrieved 2009-09-19.
  74. ^ «Adobe PDF Print Engine». adobe.com.
  75. ^ «Jaws® 3.0 PDF and PostScript RIP SDK». globalgraphics.com. Archived from the original on 2016-03-05. Retrieved 2010-11-26.
  76. ^ «Harlequin MultiRIP». Archived from the original on 2014-02-09. Retrieved 2014-03-02.
  77. ^ Press-Ready PDF Files «For anyone interested in having their graphic project commercially printed directly from digital files or PDFs.» (last checked on 2009-02-10).
  78. ^ «PDF as Standard Print Job Format». The Linux Foundation. Linux Foundation. Retrieved 21 June 2016.

Further reading[edit]

  • Hardy, M. R. B.; Brailsford, D. F. (2002). «Mapping and displaying structural transformations between XML and PDF». Proceedings of the 2002 ACM symposium on Document engineering – DocEng ’02 (PDF). Proceedings of the 2002 ACM symposium on Document engineering. pp. 95–102. doi:10.1145/585058.585077. ISBN 1-58113-594-7. S2CID 9371237.[relevant?]
  • PDF 2.0 «ISO 32000-2:2020(en), Document management — Portable document format — Part 2: PDF 2.0». www.iso.org. Retrieved 2020-12-16.
  • PDF 2.0 «ISO 32000-2:2017(en), Document management — Portable document format — Part 2: PDF 2.0». www.iso.org. Retrieved 2019-01-31.
  • PDF 1.7 (ISO 32000-1:2008)
  • PDF 1.7 and errata to 1.7
  • PDF 1.6 (ISBN 0-321-30474-8) and errata to 1.6
  • PDF 1.5 and errata to 1.5
  • PDF 1.4 (ISBN 0-201-75839-3) and errata to 1.4
  • PDF 1.3 (ISBN 0-201-61588-6) and errata to 1.3

External links[edit]

  • PDF Association – The PDF Association is the industry association for software developers producing or processing PDF files.
  • Adobe PDF 101: Summary of PDF
  • Adobe: PostScript vs. PDF – Official introductory comparison of PS, EPS vs. PDF.
  • PDF Standards….transitioning the PDF specification from a de facto standard to a de jure standard at the Wayback Machine (archived April 24, 2011) – Information about PDF/E and PDF/UA specification for accessible documents file format (archived by The Wayback Machine)
  • PDF/A-1 ISO standard published by the International Organization for Standardization (with corrigenda)
  • PDF Reference and Adobe Extensions to the PDF Specification
  • Portable Document Format: An Introduction for Programmers – Introduction to PDF vs. PostScript and PDF internals (up to v1.3)
  • The Camelot Paper – the paper in which John Warnock outlined the project that created PDF
  • Everything you wanted to know about PDF but was afraid to ask – recording of a talk by Leonard Rosenthol (45 mins) (Adobe Systems) at TUG 2007

PDF

PDF

Логотип файла формата pdf.svg
Расширение файла: .pdf
Тип MIME: application/pdf
Type code: ‘PDF ‘ (включая пробел)
Разработчик: Adobe Systems
Тип формата: Графические форматы

PDF (аббревиатура от англ. Portable Document Format — переносимый формат документов; правильно произносить пи-ди-э́ф, но большее распространенние среди русскоязычных компьютерных специалистов получило произношение пэ-дэ-э́ф) — кроссплатформенный формат электронных документов, созданный фирмой Adobe Systems с использованием ряда возможностей языка PostScript. В первую очередь предназначен для представления в электронном виде полиграфической продукции, — значительное количество современного профессионального печатного оборудования может обрабатывать PDF непосредственно. Для просмотра можно использовать официальную бесплатную программу Adobe Reader, а также программы сторонних разработчиков. Традиционным способом создания PDF-документов является виртуальный принтер, то есть документ как таковой готовится в своей специализированной программе — графическом или текстовом редакторе, САПР и т. д., а затем экспортируется в формат PDF для распространения в электронном виде, передачи в типографию и т. п.

PDF с 1 июля 2008 года является открытым стандартом ISO 32000.[1][2]

Формат PDF позволяет внедрять необходимые шрифты (построчный текст), векторные и растровые изображения, формы и мультимедиа-вставки. Поддерживает RGB, CMYK, Grayscale, Lab, Duotone, Bitmap, несколько типов сжатия растровой информации. Имеет собственные технические форматы для полиграфии: PDF/X-1, PDF/X-3. Включает механизм электронных подписей для защиты и проверки подлинности документов. В этом формате распространяется большое количество сопутствующей документации.

Содержание

  • 1 Версии
  • 2 Сторонние программы для работы с PDF
    • 2.1 Кроссплатформенные
    • 2.2 Unix-подобные
    • 2.3 Microsoft Windows
    • 2.4 Онлайновые
  • 3 Примечания
  • 4 См. также
  • 5 Ссылки

Версии

Существует несколько спецификаций pdf-документов последовательно расширяющих друг-друга. Для каждой новой спецификации создается новая версия Adobe Reader и Adobe Acrobat. Ниже показана таблица соответствий версий документов и версий программ в которых впервые была введена поддержка этих документов. Версию любого pdf-документа можно узнать по первым восьми байтам, открыв этот документ в текстовом режиме, например, в блокноте.

год версия документа новые возможности версия ПО
1993 PDF 1.0 Acrobat 1.0
1994 PDF 1.1 пароли, ссылки, потоки, независимая от устройства цветопередача Acrobat 2.0
1996 PDF 1.2 интерактивные элементы, обработка событий мыши, мультимедийные типы, уникод, улучшенное представление цвета и графики Acrobat 3.0
1999 PDF 1.3 цифровые подписи, цветовые пространства ICC и DeviceN, JavaScript Acrobat 4.0
2001 PDF 1.4 JBIG2, прозрачность, текстовый слой OCR Acrobat 5.0
2003 PDF 1.5 JPEG 2000, связанное мультимедиа, объектные потоки, перекрестные потоки Acrobat 6.0
2005 PDF 1.6 внедренное мультимедиа, XML-формы, AES-шифрование Acrobat 7.0
2006 PDF 1.7 Acrobat 8.0
2008 PDF 1.7, AEL3 AES-шифрование 256-битным ключом Acrobat 9.0
2009 PDF 1.7, AEL5 XFA 3.0 Acrobat 9.1

Сторонние программы для работы с PDF

Кроссплатформенные

  • OpenOffice.org — свободный кроссплатформенный офисный пакет, имеющий функцию экспорта в PDF.
  • pdftex (англ.)/pdflatex — вариант системы компьютерной вёрстки TeX/LaTeX, напрямую создающий PDF-файлы.
  • Ghostscript (англ.) — свободный программый интерпретатор языка PostScript. Может использоваться для создания, преобразования и просмотра PDF-файлов.
  • Xpdf (англ.) — свободная программа просмотра PDF-файлов для X Window System. Используется как движок для многих других программ просмотра.

Unix-подобные

  • Okular — универсальное приложение для просмотра документов; часть KDE4.
  • Evince — свободная программа для просмотра PDF, PostScript и других похожих форматов; часть GNOME
  • KPDF — программа просмотра PDF-файлов для KDE (в KDE4 упразднена в пользу Okular).
  • XPDF — программа просмотра PDF-файлов. Без привязки к библиотекам QT и GTK.
  • epdfview — свободная программа просмотра PDF на библиотеке GTK, но без использования библиотек среды GNOME

Microsoft Windows

  • Microsoft Office 2007 — в пакет обновлений SP2 встроена функция экспорта любых документов в PDF.
  • Foxit Reader — условно-бесплатная программа для просмотра PDF-файлов в Microsoft Windows. Объём программы составляет 3,5 Мб, установки не требует.
  • Sumatra PDF — свободная (GPLv2) программа для просмотра PDF-файлов в Microsoft Windows.
  • ABBYY PDF Transformer — собственническая shareware программа под Windows NT от 5.0 для создания и преобразования PDF-файлов из любого офисного приложения и преобразование PDF-файлов в документы редактируемых форматов (Microsoft Word, RTF и др.).
  • PDFCreator — свободная программа для создания файлов PDF. Может использоваться с любым приложением Microsoft Windows, обладающим возможностью печати документов.
  • Scientific and technical documentation utility: STDU Viewer — бесплатная для некоммерческого использования программа для чтения PDF и DJVU файлов; STDU Converter — платная программа для преобразования DJVU в PDF.

Онлайновые

  • Scribd

Примечания

  1. Формат PDF стал международным стандартом — lenta.ru
  2. ISO Ballot for PDF 1.7 Passed! — blogs.adobe.com (англ.)

См. также

  • DjVu
  • PDF/A
  • XPS

Ссылки

  • PDF Specifications, including the PDF Reference for PDF 1.7, PDF 1.6 (ISBN 0-321-30474-8), PDF 1.5, PDF 1.4 (ISBN 0-201-75839-3), PDF 1.3 (ISBN 0-201-61588-6)
  • Adobe PDF 101: Quick overview of PDF — pdf-документ с описанием основных возможностей формата.

Графические форматы

Статичные Анимационные
Растровые BMP • DjVu • GIF • HD Photo • ICO • ILBM • JBIG • JBIG2 • JPEG • JPEG 2000 • JPEG-LS • OpenEXR • PCX • PNG • PSD • RAW • TGA • TIFF • WBMP APNG • GIF • MNG
Векторные AI • EPS • PDF • PostScript • SVG • WMF SVG • SWF

Wikimedia Foundation.
2010.

Основной проблемой при создании документации является то, что
различные текстовые редакторы отображают содержимое по-разному. Чтобы документ имел одинаковый вид во
всех приложениях, был создан формат PDF. На данный момент это наиболее популярное расширение для
создания книг, электронной документации и другого типа цифровых бумаг. Что такое PDF, чем он полезен и
как его создать — рассказываем в этой статье.

Хотите иметь возможность исправить любой
электронный документ?

Скачайте лучший современный редактор PDF!

Содержание

  1. PDF — что это за формат?
    • Какие плюсы использования ПДФ
    • Какие минусы у ПДФ-формата
  2. Как сделать файл PDF формата
    • PDF Commander
    • LibreOffice
    • Adobe Acrobat DC
  3. Как подготовить и распечатать PDF
  4. Подводя итог

PDF — что это за формат?

Название формата — это аббревиатура из нескольких слов, полное название на английском — Portable Document
Format. Расшифровка PDF на русском буквально означает «портативный формат документов». Если говорить
простыми словами «для чайников», то это специальный режим сжатия, который сохраняет оригинальные стили
текста и картинок.

Расширение было создано фирмой Adobe System специально для их продукта Adobe Acrobat. На данный момент ПДФ
считается стандартом для хранения и передачи цифровых документов.

Какие плюсы использования ПДФ

Несмотря на то, что существуют десятки форматов для «упаковки» цифровых бумаг, PDF остается наиболее
распространенным вариантом. Его используют для бизнес-презентаций, создания электронных книг, научной
литературы и справочников. Среди основных причин его популярности можно выделить:

  • Файлы в этом формате сохраняют оригинальное форматирование при открытии в любом приложении для чтения.
    Единственное исключение – простейшие текстовые редакторы вроде Блокнота от Windows.
  • ПДФ можно создать из картинки без необходимости перепечатки текста. Это значительно ускоряет работу,
    если вы работаете со сканами.
  • Электронные бумаги в этом формате можно подписывать прямо на компьютере, а также добавлять специальные
    формы для заполнения.
  • В ПДФ-документ можно встраивать комментарии и пометки, которые не изменяют его внешний вид, но видны
    другим пользователям. Это полезно при совместной работе над проектом.
  • Можно наложить несколько уровней безопасности, в том числе включить защиту от копирования, печати и
    полностью запретить открытие.
  • Не знаете, как переслать документ по
    e-mail или анкету на Госуслуги, если стоит ограничение на размер? Создайте документацию в
    PDF-формате — он отличается небольшим размером и идеально подходит для пересылки по интернету.

Все эти особенности позволяют применять данный формат как в бизнесе, так и в личной деятельности.

Какие минусы у ПДФ-формата

Конечно, не обошлось без недостатков. У PDF можно обнаружить следующие минусы:

  • Редактировать подобные файлы можно только в специальных программах.
  • Если ПДФ-документ состоит из изображений, для его коррекции потребуется специальный модуль распознавания
    текста.

Как видите, у формата есть и минусы, но они не критичные. В большинстве случаев их можно обойти, установив
подходящий софт.

Как сделать файл PDF формата

Итак, мы рассказали, что такое ПДФ. Давайте разберемся, как создавать такой тип медиафайлов.

PDF Commander

PDF Commander — это специальное ПО для редактирования
ПДФ-документации. Софт позволяет создать документы вручную, вводя текст и добавляя изображения, либо
объединить другие типы медиафайлов, например, сканы и картинки JPG, PNG и т. п. Давайте разберем, как
сделать ПДФ-файл в этой программе.

  1. Скачайте на компьютер инсталлятор редактора и распакуйте его на компьютер, дважды кликнув по
    загруженному файлу. Для успешного завершения установки следуйте инструкциям на экране.
  2. Запустите софт и на стартовой странице воспользуйтесь кнопкой «Создать PDF». Также вы можете вызвать эту
    опцию из окна редактора, если просматриваете какой-то файл. Для этого кликните «Файл», затем «Создать».

    что такое пдф формат
  3. Выберите в верхней панели инструмент «Текст» и кликните по области листа, на которой будет располагаться
    заголовок.

    как сделать пдф файл в пдф коммандер
  4. Когда вы начнете вводить текст, появится панель с дополнительными настройками. Здесь вы можете
    отрегулировать размер, выбрать шрифт и цвет, настроить прозрачность, подчеркнуть или зачеркнуть надпись,
    сделать буквы жирными. Также можно настроить межстрочный интервал и отцентровать текстовой блок.

    настройки текста в программе пдф коммандер
  5. Чтобы добавить фотографию, вернитесь во вкладку «Редактор» и нажмите на кнопку «Изображение». Захватите
    появившееся фото и перетяните его на любое место на листе. Кликнув по нему два раза, вы вызовете окно
    дополнительных настроек.

    добавить фото в пдф файл
  6. Для добавления нового листа раскройте вкладку «Страницы» и нажмите «Добавить страницу». Вы можете
    перемещать листы между собой при помощи кнопок «Сместить к началу» или «Сместить к концу». Два раза
    кликните по нужной вам странице, чтобы открыть ее для редактирования.

    как добавить новый лист в пдф
  7. Экспортируйте проект, нажав иконку в виде дискеты в левом верхнем углу экрана.

Благодаря простому управлению редактор можно использовать даже для сложных вопросов, например, как
перевести презентацию в ПДФ-документ или защитить проект от изменения. Софт почти не нагружает ПК, что
делает его отличным выбором для слабых ноутбуков, и совместим со всеми версиями Windows.

LibreOffice

LibreOffice – это бесплатный офисный пакет, который многие используют как
альтернативу MS Word. Помимо работы с обычными текстовыми документами софт умеет обрабатывать PDF-файлы.
Управление достаточно простое, поэтому разобраться, как сделать формат PDF, не составит особого труда.

  1. Скачайте LibreOffice с официального сайта и установите на ПК. Запустите софт и в боковой колонке
    выберите «Документ Writer».

    LibreOffice
  2. Добавьте заголовки и другой текст и отредактируйте его стиль, используя рабочую панель в верхней части
    программы.

    создать пдф документ в LibreOffice
  3. Чтобы добавить картинку, используйте подходящую иконку в строке с инструментами. Чтобы отцентровать
    фото, выделите его и перетащите на нужную область листа.

    добавить картинку в пдф файл в LibreOffice
  4. Если вам нужно встроить пустую страницу, в главном меню отыщите пункт «Вставка». Раскройте список
    вариантов и кликните «Еще разрывы», затем выберите последнюю строчку.

    добавить новую страницу в пдф файл в LibreOffice
  5. В окне настроек отметьте «Разрыв страницы». В меню стиля вы можете выбрать тип нового листа: базовый,
    альбомный, конверт и т.д. После этого нажмите ОК.

    добавить разрыв страницы в программе LibreOffice
  6. Чтобы сохранить результат на компьютер, найдите на панели с инструментами кнопку «Экспорт в PDF
    непосредственно». Она находится между иконками сохранения и печати.

    сохранить документ в программе LibreOffice

После этого сохраните проект стандартным способом, указав название и папку.

Adobe Acrobat DC

Именно Adobe создали PDF, поэтому весьма логично, что многие используют для работы с этим форматом именно
их продукцию. Давайте разберемся, как сделать документ в ПДФ с помощью их продвинутого PDF-редактора Adobe
Acrobat.

  1. После установки программы откройте пункт меню «Файл». Выберите функцию «Создать» и укажите «Пустая
    страница».

    Adobe Acrobat DC
  2. Чтобы добавить элементы, в боковой колонке отыщите строчку «Редактировать PDF».

    добавить элементы в пдф в Adobe Acrobat DC
  3. Добавьте текст, выбрав нужный инструмент на верхней панели. В столбце справа укажите шрифт, размер,
    цвет, положение на странице и другие параметры отображения.

    как добавить текст в пдф файл в Adobe Acrobat DC
  4. Нажмите «Добавить изображение», чтобы загрузить фото. Когда рисунок импортируется, возле курсора
    появится небольшое превью. Кликните по странице, чтобы встроить фотографию.

    как добавить изображение в пдф файл в Adobe Acrobat DC
  5. Для сохранения нажмите иконку в виде дискеты, которая располагается в верхнем левом углу. В окне
    экспорта выберите вкладку «Мой компьютер» и кликните «Выбрать другую папку».

    сохранить документ пдф в Adobe Acrobat DC
  6. Укажите нужную директорию и имя ПДФ-файла и нажмите «Сохранить».

Дополнительным плюсом является то, что Acrobat позволяет управлять ПДФ-файлами в телефоне. Крупным
недостатком Adobe является большая нагрузка на процессор и частые ошибки.

Как подготовить и распечатать PDF

PDF-формат универсально отображается и при просмотре, и при распечатке. Но если вы применяли специальные
стили или готовите книгу для типографской печати, следует помнить некоторые нюансы:

  • Все изображения должны быть переведены в цветовую модель CMYK.
  • Если при стилизации элементов вы использовали прозрачность, при экспорте выбирайте версию PDF 1.5 или
    1.6, чтобы на картинке не было белых полос.
  • При печати устанавливайте DPI не менее 300.

Для печати можно использовать любое приложение, которое умеет читать PDF-формат, в том числе Word или
браузер. Откройте файл, вызовите окно настроек комбинацией кнопок Ctrl + P, укажите принтер и запустите
процесс кнопкой «Печать».

как распечатать документ в пдф

Подводя итог

В этой статье мы разобрали, что такое PDF файл и как с ним работать, а также рассмотрели программы, с помощью которых можно создать PDF. Если вы ищете оптимальный софт для работы с
документацией на продвинутом уровне, скачайте PDF Commander. Он подходит для создания проектов любой
сложности, прост и удобен в управлении, в том числе для новичков, и позволяет быстро обрабатывать крупные
файлы даже на слабом ПК.

Актуальные статьи

Нужен многофункциональный редактор и
конвертер для PDF?

Скачайте 100% рабочую версию!

Просмотров 13.4к. Опубликовано 26 февраля, 2019 Обновлено 26 февраля, 2019

Разработанный Adobe Systems файл с расширением PDF представляет собой файл Portable Document Format.

Вы могли много раз увидеть руководства по программам, электронные книги, листовки, заявления о приеме на работу, отсканированные документы, брошюры и всевозможные другие документы, доступные в формате PDF.

Поскольку PDF-файлы не зависят от программного обеспечения, которое их создало, ни от какой-либо конкретной операционной системы или оборудования, они выглядят одинаково, независимо от того, на каком устройстве они открыты.

Как открыть файл PDF

Большинство людей направляются прямо в Adobe Acrobat Reader, когда им нужно открыть PDF. Adobe создала стандарт PDF, и его программа, безусловно, самая популярная бесплатная программа для чтения PDF. Его вполне можно использовать, но я считаю, что это несколько раздутая программа с множеством функций, которые вам никогда не понадобятся или которые вы не захотите использовать.

Большинство веб-браузеров, таких как Chrome и Firefox, могут открывать PDF-файлы сами. Вам может потребоваться, а может и не понадобиться надстройка или расширение, но довольно удобно автоматически открывать его, когда вы нажимаете ссылку PDF в Интернете.

Я рекомендую SumatraPDF или MuPDF, если вы хотите чего-то большего. Оба бесплатны.

Чем можно открыть PDF:

  1. Браузером Google Chrome, Firefox, Яндекс.
  2. Adobe Acrobat Reader
  3. SumatraPDF
  4. MuPDF

Как редактировать файл PDF

Бесплатный редактор PDF от FormSwift, PDFescape, DocHub и PDF Buddy — это несколько бесплатных онлайнредакторов PDF, которые позволяют действительно легко заполнять формы, подобные тем, которые вы иногда видите в заявлении на работу или налоговой форме. Просто загрузите свой PDF-файл на веб-сайт, чтобы сделать такие вещи, как вставка изображений, текста, подписей, ссылок и т. д. А затем скачайте его обратно на свой компьютер в формате PDF.

Посмотрите наш список лучших бесплатных редакторов PDF для регулярно обновляемой коллекции PDF-редакторов, если вам нужно нечто большее, чем просто заполнение форм, например, добавление или удаление текста или изображений из вашего PDF.

Если вы хотите извлечь часть PDF-файла как отдельную или разделить PDF-файл на несколько отдельных документов, есть несколько способов сделать это. Посмотрите наши лучшие инструменты и методы PDF Splitter, чтобы получить всю необходимую помощь.

Как конвертировать PDF файл

Большинство людей, желающих преобразовать PDF-файл в какой-либо другой формат, заинтересованы в том, чтобы сделать это, чтобы они могли редактировать содержимое PDF. Преобразование PDF означает, что он больше не будет .PDF и вместо этого откроется в программе, отличной от программы чтения PDF.

Если вместо этого вы хотите, чтобы файл, отличный от PDF, был файлом .PDF, вы можете использовать создатель PDF . Эти типы инструментов могут принимать такие вещи, как изображения, электронные книги и документы Microsoft Word, и экспортировать их в формате PDF, что позволяет открывать их в программе чтения PDF или электронных книг.

Сохранение или экспорт из какого-либо формата в PDF можно выполнить с помощью бесплатного создателя PDF. Некоторые даже служат в качестве принтера PDF, что позволяет вам практически «напечатать» практически любой файл в файл .PDF. На самом деле это простой способ конвертировать практически все в PDF. См. Как печатать в PDF для полного ознакомления с этими параметрами.

Некоторые из программ по ссылкам выше могут быть использованы обоими способами, то есть вы можете использовать их как для преобразования PDF-файлов в различные форматы, так и для создания PDF-файлов. Калибр — это еще один пример бесплатной программы, которая поддерживает преобразование в формат электронных книг и обратно.

Кроме того, многие из упомянутых программ могут также объединять несколько PDF-файлов в один, извлекать определенные PDF-страницы и сохранять только изображения из PDF.

См. Раздел « Как конвертировать PDF-файлы в JPG», если вы хотите, чтобы ваш PDF-файл представлял собой просто изображение, что может быть полезно, если вы не уверены, что кто-то, кому вы хотите отправить PDF-файл, имеет или хочет установить PDF-ридер.

EasyPDF.com — еще один онлайн-конвертер PDF, который поддерживает сохранение PDF в различных форматах, чтобы он был совместим с Word, PowerPoint, Excel или AutoCAD. Вы также можете конвертировать страницы PDF в GIF-файлы или отдельный текстовый файл . PDF-файлы могут быть загружены из Dropbox, Google Drive или с вашего компьютера. CleverPDF является аналогичной альтернативой.

Еще одно преобразование — PDF в PPTX. Если вы используете PDFConverter.com для преобразования документа, каждая страница PDF будет разделена на отдельные слайды, которые вы можете использовать в PowerPoint или любом другом программном обеспечении для презентаций, которое поддерживает файлы PPTX.

Посмотрите эти бесплатные программы преобразования файлов и онлайн-сервисы,чтобы узнать о других способах преобразования файла PDF в какой-либо другой формат файла, включая форматы изображений, HTML, SWF, MOBI, PDB, EPUB, TXT и другие.

Как обезопасить PDF

Защита PDF может включать в себя требование пароля для его открытия, а также запрет на печать кем-либо PDF-файла, копирование его текста, добавление комментариев, вставку страниц и другие вещи.

Soda PDF,  FoxyUtils и некоторые из создателей и конвертеров PDF, на которые есть ссылки сверху — например, PDFMate PDF Converter Free, PrimoPDF и FreePDF Creator — это лишь некоторые бесплатные приложения из многих, которые могут изменять эти типы параметров безопасности.

Как взломать пароль PDF или разблокировать PDF

Хотя в некоторых случаях рекомендуется защищать PDF-файл паролем, вы можете забыть, что это за пароль, отключив доступ к вашему собственному файлу.

Если вам нужно удалить или восстановить пароль владельца PDF (тот, который ограничивает определенные действия) или пароль пользователя PDF (тот, который ограничивает открытие) в файле PDF, используйте один из этих инструментов для удаления паролей Free PDF .

Portable Document Format (PDF) — это формат файлов, разработанный Adobe в 1993 году для представления документов, включая форматирование текста и изображения, независимо от прикладного программного обеспечения, оборудования и операционных систем.[1][2] На основе языка PostScript каждый файл PDF инкапсулирует полное описание плоского документа с фиксированным макетом, включая текст, шрифты, векторную графику, растровые изображения и другую информацию, необходимую для его отображения.

PDF был стандартизирован как ISO 32000 в 2008 году, и больше не требует никаких лицензионных отчислений за его внедрение.[3]

Файлы PDF могут содержать различное содержимое помимо простого текста и графики, включая элементы логической структуризации, интерактивные элементы, такие как аннотации и поля формы, слои, мультимедийные материалы (включая видеоконтент) и трехмерные объекты, использующие U3D или PRC, а также различные другие форматы данных. Спецификация PDF также предусматривает шифрование и цифровые подписи, вложения файлов и метаданные, чтобы обеспечить рабочие процессы, требующие этих функций.

История[править]

Adobe Systems предоставила спецификацию PDF бесплатно в 1993 году. В первые годы PDF был популярен в основном в рабочих процессах настольных издательских систем и конкурировал с различными форматами, такими как DjVu, Envoy, Common Ground Digital Paper, Farallon Replica и даже собственным форматом Adobe PostScript.

PDF был проприетарным форматом, контролируемым Adobe, пока он не был выпущен в качестве открытого стандарта 1 июля 2008 года и опубликован Международной организацией по стандартизации как ISO 32000-1: 2008,[4][5] в то время как спецификация передана комитету ISO, состоящему из добровольных отраслевых экспертов. В 2008 году Adobe опубликовала публичную патентную лицензию ISO 32000-1, предоставляющую бесплатные права на все патенты, принадлежащие Adobe, которые необходимы для создания, использования, продажи и распространения реализаций, совместимых с PDF.[6]

PDF 1.7, шестое издание спецификации PDF, ставшее стандартом ISO 32000-1, включает некоторые проприетарные технологии, определенные только Adobe, такие как Adobe XML Forms Architecture (XFA) и расширение JavaScript для Acrobat, на которые в ISO 32000-1 ссылаются как нормативный и необходимый для полной реализации спецификации ISO 32000-1. Эти проприетарные технологии не стандартизированы, и их спецификации публикуются только на веб-сайте Adobe.[7][8][9][10][11] Многие из них также не поддерживаются популярными сторонними реализациями PDF.

28 июля 2017 года был опубликован стандарт ISO 32000-2: 2017 (PDF 2.0)[12]. ISO 32000-2 не содержит каких-либо патентованных технологий в качестве нормативных ссылок.[13]

Технические основы[править]

Файл PDF часто представляет собой комбинацию векторной графики, текста и растровой графики. Основные типы содержимого PDF-файла:

  • Текст, хранящийся в виде потоков контента (то есть не закодированный в виде обычного текста)
  • Векторная графика для иллюстраций и дизайнов, состоящих из форм и линий.
  • Растровая графика для фотографий и других типов изображений
  • Мультимедийные объекты в документе

В более поздних версиях PDF документ PDF может также поддерживать ссылки (внутри документа или веб-страницы), формы, JavaScript (изначально доступный как плагин для Acrobat 3.0) или любые другие типы встроенного содержимого, которые можно обрабатывать с помощью плагинов.

PDF объединяет три технологии:

  • Подмножество языка программирования описания страниц PostScript для создания макета и графики.
  • Система встраивания/замены шрифтов, позволяющая шрифтам перемещаться вместе с документами.
  • Структурированная система хранения для объединения этих элементов и любого связанного с ними содержимого в один файл со сжатием данных, где это необходимо.

PostScript — это язык описания страниц, запускаемый в интерпретаторе для создания изображения, процесс, требующий много ресурсов. Он может обрабатывать графику и стандартные функции языков программирования, такие как операторы if и команды цикла. PDF в значительной степени основан на PostScript, но упрощен, чтобы удалить подобные функции управления потоком, в то время как графические команды, такие как lin, остаются.

Часто код PDF, подобный PostScript, создается из исходного файла PostScript. Графические команды, выводимые кодом PostScript, собираются и токенизируются. Также собираются все файлы, изображения или шрифты, на которые ссылается документ. Затем все сжимается в один файл. Таким образом, весь мир PostScript (шрифты, макет, размеры) остается нетронутым.

Как формат документа PDF имеет несколько преимуществ перед PostScript:

  • PDF содержит токенизированные и интерпретированные результаты исходного кода PostScript для прямого соответствия между изменениями элементов в описании страницы PDF и изменениями внешнего вида страницы.
  • PDF (с версии 1.4) поддерживает прозрачную графику; PostScript — нет.
  • PostScript — это интерпретируемый язык программирования с неявным глобальным состоянием, поэтому инструкции, сопровождающие описание одной страницы, могут повлиять на внешний вид любой следующей страницы. Следовательно, все предыдущие страницы в документе PostScript должны быть обработаны, чтобы определить правильный внешний вид данной страницы, в то время как каждая страница в документе PDF не зависит от других. В результате средства просмотра PDF позволяют пользователю быстро переходить к последним страницам длинного документа, в то время как средство просмотра PostScript должно обрабатывать все страницы последовательно, прежде чем сможет отобразить целевую страницу (если дополнительные соглашения о структурировании документов PostScript не были тщательно скомпилированы и включены).

PDF 1.6 поддерживает интерактивные 3D-документы, встроенные в файл PDF: 3D-чертежи могут быть встроены с использованием U3D или PRC и различных других форматов данных.

Источники[править]

  1. Adobe Systems Incorporated, PDF Reference, Sixth edition, version 1.23 (53 MB), Nov 2006, p. 33.
  2. The Camelot Project.
  3. ISO 32000-1:2008.
  4. ISO 32000-1:2008 – Document management – Portable document format – Part 1: PDF 1.7. Iso.org (2008-07-01). Проверено 21 февраля 2010.
  5. Orion, Egan PDF 1.7 is approved as ISO 32000. The Inquirer. The Inquirer (2007-12-05). Проверено 5 декабря 2007.
  6. Adobe Systems Incorporated (2008), «Public Patent License, ISO 32000-1: 2008 – PDF 1.7», <https://www.adobe.com/pdf/pdfs/ISO32000-1PublicPatentLicense.pdf>. Проверено 6 июля 2011.
  7. Guide for the procurement of standards-based ICT – Elements of Good Practice, Against lock-in: building open ICT systems by making better use of standards in public procurement. European Commission (2013-06-25). — «Example: ISO/IEC 29500, ISO/IEC 26300 and ISO 32000 for document formats reference information that is not accessible by all parties (references to proprietary technology and brand names, incomplete scope or dead web links).»  Проверено 20 октября 2013.
  8. «ISO/TC 171/SC 2/WG 8 N 603 – Meeting Report», 2011-06-27, <http://pdf.editme.com/files/pdfREF-meetings/ISO-TC171-SC2-WG8_N0603_SC2WG8_MtgRept_SLC.pdf>
  9. Embedding and publishing interactive, 3-dimensional, scientificfigures in Portable Document Format (PDF) files. — «the implementation of the U3D standard was not complete and proprietary extensions were used.»  Проверено 20 октября 2013.
  10. Leonard Rosenthol, Adobe Systems PDF and Standards (2012). Проверено 20 октября 2013.
  11. Duff Johnson (2010-06-10), «Is PDF an open standard? — Adobe Reader is the de facto Standard, not PDF», <http://www.planetpdf.com/enterprise/article.asp?ContentID=Is_PDF_an_open_standard&page=1>. Проверено 19 января 2014.
  12. The worldwide standard for electronic documents is evolving (англ.). Проверено 29 июня 2018.
  13. ISO 32000-2 – Document management — Portable document format — Part 2: PDF 2.0 (англ.). Проверено 28 июля 2017.

Ссылки[править]

  • PDF Specifications, including the PDF Reference for PDF 1.7, PDF 1.6 (ISBN 0-321-30474-8), PDF 1.5, PDF 1.4 (ISBN 0-201-75839-3), PDF 1.3 (ISBN 0-201-61588-6)

Wiki.png

[+]

Медиаконтейнеры

Видео/аудио

3GP •
ASF •
AVI •
Bink •
DivX_Media_Format#DivX_Media_Format_.28DMF.29 •
DPX •
Enhanced_VOB •
FLV •
Matroska (MKV) •
WebM •
MPEG-PS •
MPEG-TS •
MP4 •
MXF •
NUT •
Ogg •
Ogg Media •
QuickTime •
RealMedia •
Smacker •
RIFF •
VOB •
сравнение
сжатие

 

Аудио

AIFF •
APE •
AU •
DSD •
DXD •
MLP •
MP3 •
FLAC •
SHN •
WAV •
WMA •
сравнение
сжатие

 

Растровые

Без потерь:
BMP •

FPX •
GIF •
ICO •
ILBM •
JBIG •
PCX •
PNG •
PNM •
PSD •
Raw •
TGA •
WBMP •
XCF •
Включая сжатие с потерями:
BPG •

EXR •
ICER •
JBIG2 •
JPEG /
JP2 /
JPEG-LS •
JPEG XR (HD Photo) •
PGF •
TIFF •
WebP •
Анимационные:
APNG •

GIF •
MNG

 

Векторные

AI •
CDR •
EMF •
EPS •
PS •
SVG •
WMF •
XPS •
Анимационные:
SVG •

SWF •
3D:
3DS •

VRML •
X3D

 

Комплексные

CGM •
DjVu •
PDF

Wiki.png

[+]

Adobe Systems

Клиентское ПО Creative Cloud (Creative Suite) · Technical Communication Suite · Acrobat · Acrobat Connect · Audition · Captivate · Digital Editions · Director · GoLive · PageMaker · Photoshop Lightroom · FreeHand · Media Encoder CC · больше 
Серверное ПО ColdFusion · LiveCycle · Flash Media Server · JRun · Premiere Express · Photoshop Express 
Технологии PostScript · PDF · FlashPaper · Authorware · Flash · Font Folio · DNG · Flex · AIR · BlazeDS 
Сервисы Adobe Solutions Network 
Совет директоров Charles Geschke · John Warnock · Bruce Chizen · Shantanu Narayen 
Приобретение других компаний Объединения и приобретения · Aldus · Macromedia · Scene7
Category Категория · Symbol question.svg Викисклад

Wiki.png

[+]

Электронные книги (устройства и документы)

Устройства

Amazon Kindle •
Nook •
FR book •
LBook •
MAGIC E701 •
Onext Touch&Read •
Onyx Boox •
PAGEone •
PocketBook Reader •
REB 1100 •
Rocket eBook •
Sony Reader •
Азбука •
Электронная книга с шрифтом Брайля •
список…

 

Форматы файлов

CBR •
DjVu •
DOC •
ePub •
FB •
ODF •
PDF •
BBeB •
TXT

 

Каталогизаторы

All My Books •
Calibre •
MyHomeLib •
MyRuLib

 

Библиотеки

Amazon.com •
Barnes & Noble •
FictionBook.ru •
Google Books •
MyBook •
Ozon.ru •
Альдебаран •
Архив Интернета •
Библиотека Мошкова •
Викитека •
Либрусек •
ЛитРес •
Марксистский интернет-архив •
Проект «Гутенберг» •
Руниверс •
Флибуста

 

См. также

Электронная бумага

PDF (Portable Document Format) – кроссплатформенный, стандартизированный и открытый формат оцифрованных документов, разработанный в Adobe System на основе языка PostScript. Предназначен для подробного представления полиграфической продукции (книг, плакатов, документов, разворотов брошюр) в электронном виде и распространяется в виде файлов с расширением .PDF, включающих растровую и векторную графику (отсканированные страницы с расшифрованным содержимым), шрифты, иллюстрации, таблицы и даже сценарии, подготовленные на языке JavaScript. Среди дополнительных возможностей – встроенный механизм сжатия документа для экономии места и поддержка систем защиты, основанных на добавлении документам паролей и AES-шифрования.

Особенности формата PDF:

  • Разрабатывается с 1993 года, к 2008 году принят в качестве международного стандарта представления цифровых документов;
  • Формат разрешает экономить место, используя 14 безопасных шрифтов (Times, Courier, Helvetica, Symbol, Zapf Dingbats);
  • Поддерживает интерактивные элементы, обрабатывает события мыши и юникод, знает об AES-шифровании и справляется с внедрением дополнительного контента;
  • Почти не редактируется сторонними инструментами, а если и меняется, то поверхностно – общая структура остается почти неизменной;
  • Доступен для просмотра и на компьютерах (даже через браузер), и на мобильных операционных система при наличии соответствующего программного обеспечения.

Содержание

  1. Программы для чтенияPDF-документов
  2. Экспериментальный путь
  3. Специальный софт для просмотра файлов
  4. Программы для редактирования PDF-документов
  5. Мобильный софт для просмотра PDF-документов
  6. Вердикт

Релиз Portable Document Format публика 90-х не оценила. Всему виной – странная стратегия продвижения и сотни недоработок. Документы формата PDF просматривались лишь официальным программным обеспечением, на которое разработчики из Adobe, по неизвестным причинам сразу решили повесить ценник в полсотни долларов. Тех, кто программу приобрел ждали новые разочарования – часть контента отображалось некорректно, а из-за неправильного сжатия некоторые файлы разрастались до сотен мегабайт, что стало почти смертельным приговором для формата в эпоху медленного интернета на тарифах с ограниченным трафиком.

С тех пор многое поменялось – Adobe Acrobat Reader DC доступен для загрузки без предварительных платежей и подписок, файлы с легкостью оптимизируются и занимают намного меньше, чем раньше, а формат научился поддерживать целую серию неожиданных возможностей, включая внедрение мультимедиа и AES-шифрование. Какие преимущества появятся в будущем – неизвестно, да и незачем выбираться за пределы настоящего раньше времени. Намного важнее разобраться в том, какое программное обеспечение способно просматривать контент Portable Document Format, кроме Adobe Acrobat Reader.

Экспериментальный путь

Документы ПДФ с легкостью просматриваются через браузер – Google Chrome, Firefox и Opera мгновенно распознают формат файлов PDF и сразу загружают информацию с разделением на страницы.

Пдф файл, открытый в браузере

Навигация в браузерах организована по схожему принципу: слева выводится содержимое PDF-документа (превью страниц с дополнительными подробностями), сверху – поисковая строка и ползунки масштабирования, а справа отображаются специальные шаблоны для перехода к альтернативным режимам просмотра содержимого или печати выделенных фрагментов.

Любопытный факт: если распаковать ПДФ файл через Microsoft Edge, то браузер, встроенный в Windows 8 и 10, отобразит дополнительные функции. Кнопка «Прочесть вслух» запускает голосового ассистента, распознающего и озвучивающего слова с цифровых страниц в автоматическом режиме, а если воспользоваться разделами «Нарисовать» и «Выделение», то появится шанс еще и расставить визуальные акценты. Кстати, функция «Стереть» работает лишь в половине случаев – с некоторых страниц лишние фрагменты не скрываются.

Специальный софт для просмотра файлов

Программы для просмотра pdf формата

И, хотя Microsoft Edge с точки зрения доступных возможностей при работе с PDF-документами сильно выделяется на фоне конкурентов, даже дополнительных преимуществ порой недостаточно. Те же браузеры не поддерживают закладки, не запоминают последнее место просмотра и не способны объединять разрозненные документы вместе. А потому без дополнительных инструментов не обойтись:

  • PDF24 Creator. Полноформатный просмотрщик PDF-файлов, разрешающих объединять разрозненные страницы вместе, распознавать и копировать текст, проводить полноценную оптимизацию и конвертировать найденные файлы из PDF в JPEG, PNG, BMP, PCX, TIFF, PSD, PCL. Распространяется бесплатно, не требует дополнительной регистрации и не занимает много места на жестком диске.
  • LibreOffice. Кроссплатформенный инструмент, поддерживаемый Windows, macOS, Linux, и кроме просмотра PDF справляющийся еще и документами от Microsoft Office. По функционалу схож с PDF24 Creator, но дополнительно способен частично редактировать текст (менять шрифт и начертание), а еще разрешает рисовать, добавляя навигационные стрелочки и символы.
  • Foxit Reader. Молниеносный и не страдающий от технических неполадок сервис, обладающий базовым, но качественно проработанным функционалом. Foxit Reader просматривает файлы, поддерживает поиск по страницам, разрешает проводить конвертацию из PDF в TXT без потери информации, а еще – способен распознавать формы и таблицы для добавления новой информации.

Работа с PDF-файлами организована и в условно-бесплатном инструменте Sejda PDF Desktop с интуитивным интерфейсом, всплывающими подсказками и функцией редактирования цифровых документов по шаблону, странице или в выбранных фрагментах. Поддерживается Sejda компьютерами с Windows, MacOS и Linux, а еще запускается в формате Portable. Из недостатков – ограниченное количество задач на каждый день: разработчики не разрешают конвертировать, редактировать и комбинировать больше 5 файлов в сутки. Ограничения снимаются по подписке: 7-дневный доступ обойдется в 8 долларов США.

Программы для редактирования PDF-документов

Как писать в pdf документе после открытия

Раз уж просматривать файлы формата ПДФ способны даже браузеры, то кроме программного обеспечения с базовыми возможностями, не помешает найти чуть более функциональное, способное проводить еще и поверхностную или глубокую конвертацию импортируемых документов, а заодно редактировать фрагменты текста:

  • PDFChef by Movavi. Эффективный и беспрерывно развивающийся инструмент, специализирующийся на работе с форматом PDF. Представлен в нескольких версиях и доступен для MacOS и Windows. Распространяется PDFChef by Movavi по подписке (демонстрационный период – 7 дней), но зато предлагает и подписывать файлы, и объединять, и разбивать и даже выгружать иллюстрации из документов в пакетном режиме и не теряя качества.Ключевой недостаток – версия для Linux до сих пор не появилась (как и для iOS и Android), а платить за предоставляемый функционал решатся далеко не все.
  • Master PDF Editor. Экспериментальный текстовый редактор с лаконичным и продуманным интерфейсом, и поддержкой целой коллекции функции. Разработчики интегрировали и систему просмотра, и раздел с комментированием (расставленные рецензии синхронизируются по сети), и редактирование и даже подпись файлов в выбранном формате.Как дополнительный бонус – всплывающие подсказки для новичков и встроенный FAQ с дополнительными инструкциями и рекомендациями.Недостаток – стоимость. Лицензия обойдется в 2990 рублей (покупка разовая). Но, если с документами приходится работать часть, то едва ли подобное станет проблемой.
  • Infix от Iceni Technology. Средство для просмотра и полноценного редактирования PDF-файлов, доступное бесплатно и без ограничений на компьютерах с Windows, MacOS и Linux. Среди ключевых возможностей выделяется извлечение различной информации (включая иллюстрации), поворот и обрезка страниц, редактирование текста с помощью новых шрифтов (в том числе и догружаемых) и методом подстановки новых фрагментов.Преимущество – никаких платежей и подписок, весь контент доступен сразу.Недостатков мало, да и те связаны лишь с технической частью. Часть аудитории жалуется на неконтролируемые вылеты и странные ошибки, появляющиеся при попытке расшифровать PDF документы объемом более 500 мегабайт.

Кроме десктопных версий редакторов и конвертеров файлов PDF встречаются и инструменты, адаптированные под работу в браузере и не требующие предварительной подготовки программного обеспечения и даже регистрации:

  • iLovePDF. Творческая платформа, поддерживающая чтение ПДФ файлов, конвертацию, разделение и редактирование: разработчики разрешают добавлять текст, иллюстрации и вносить рукописные аннотации поверх каждой страницы. Дополнительно меняются шрифты и задается начертание для найденных символов.Premium-подписка на сайте предусмотрена, но и базового тарифа достаточно для редактирования, конвертации и внесения правок в подготовленные документы. Регистрация необязательна, но перед экспортом материалов придется посмотреть рекламу.
  • PDF.io. Сервис от 123APPS разделяет документы по страницам, «склеивает» вместе, конвертирует в Excel и Word, JPG и PNG, а еще разрешает сбрасывать пароли или наоборот добавлять защиту.Перед доступом к инструментам не придется регистрироваться – достаточно выбрать подходящий файл на жестком диске (или прикрепить ссылку с облачного хранилища) и приступить к работе с ПДФ.
  • PDF2GO. Мультифункциональный и кросс-браузерный PDF-конвертер с обширным функционалом, включающим и часть эксклюзивных находок. Разработчики разрешают проводить постраничную оптимизацию контента (сжимать картинки, менять шрифты), вырезать лишние фрагменты, а еще – запускать сценарии специального «Восстановления PDF», если исходные материалы повреждены или недоступны для просмотра.

    Как и в случае с конкурентами предварительная регистрация не понадобится, а экспорт и импорт доступны без ограничений.

Мобильный софт для просмотра PDF-документов

Чтение документа пдф на телефоне

Как и на компьютерах официально файлы ПДФ просматриваются с помощью программного обеспечения от Adobe. Знаменитый Reader выпущен для операционных систем iOS и Android уже много лет назад и до сих пор стабильно обновляется, обрастает новым функционалом и поддерживает некоторые эксклюзивные функции, вроде электронных подписей.

Кроме Adobe Acrobat Reader для просмотра PDF-документов на iOS доступен PDFelement, дополнительно поддерживающий конвертацию импортированных материалов, систему аннотаций, а еще способный менять шрифты для текста на выбранных страницах и заливать фон новым цветом. Распространяется PDFelement по модели Freeware – без подписок и разовых платежей, а справляется почти с любой нагрузкой – проблем не возникнет даже с файлами, превышающими размер в 500 мегабайт.

Не возникает проблем с выбором стороннего программного обеспечения взамен Adobe Acrobat Reader и на Android: разработчики из Tools & Utilities Apps представили целый комплект инструментов, разрешающих просматривать, конвертировать и полноценно редактировать содержимое файлов PDF. Уже давно поддерживается возможность выделять важные фрагменты маркером, вырезать лишние страницы, расставлять закладки и даже добавлять водяные знаки для защиты информации от наглого копирования.

Вердикт

Работать с документами в формате PDF стало намного проще. Специальное программное обеспечение, ранее поддерживавшее лишь просмотр оцифрованных документов, с недавних пор разрешает выделять важные фрагменты виртуальными маркерами, расставлять закладки и проводить пакетную конвертацию с заданными параметрами. Часть перечисленных функций уже появилась и в браузера, а вместе тем доступна и на мобильных операционных системах iOS и Android. Осталось лишь выбрать подходящее программное обеспечение и приступить к работе!

Что такое Adobe PDF

Формат переносимых документов (PDF) представляет собой универсальный файловый формат, который позволяет сохранить шрифты, изображения и сам макет исходного документа независимо от того, на какой из множества платформ и в каком из множества приложений такой документ создавался. Формат Adobe PDF считается признанным общемировым стандартом в области тиражирования и обмена надежно защищенными электронными документами и бланками. Файлы Adobe PDF имеют небольшой размер, и они самодостаточны; они допускают совместную работу, просмотр и печать с помощью бесплатной программы Adobe Reader®.

Отлично себя оправдывает использование формата Adobe PDF в издательском и печатном деле. Благодаря способности Adobe PDF сохранить совмещенный (композитный) макет, можно создавать компактные и надежные файлы, которые сотрудники типографии могут просматривать, редактировать, сортировать и получать с них пробные оттиски. Также в предусмотренный техпроцессом момент в типографии могут как непосредственно отправить файл на фотонаборное устройство, так и продолжить его завершающую обработку: осуществить предпечатные проверки, провести треппинг, спустить полосы или выполнить цветоделение.

Сохраняя документ в формате PDF, можно создать файл, соответствующий стандарту PDF/X. Формат PDF/X (формат обмена переносимыми документами) является разновидностью Adobe PDF, которая не допускает использования многих вариантов и сочетаний данных о цветности, шрифтов и треппинга, которые могут вызвать осложнения при печати. Документ PDF/X следует создавать в случае, когда PDF-файлы используются как цифровые оригиналы при допечатной подготовке изданий — как на этапе создания макета, так и для целей фотовывода (если программное обеспечение и выводящие устройства способны работать с форматом PDF/X).

О стандартах PDF/X. Стандарты PDF/X утверждены Международной организацией по стандартизации (ISO). Они применяются к обмену графическими данными. При преобразовании PDF-файл проверяется на соответствие заданному стандарту. Если PDF-документ не соответствует выбранному стандарту ISO, отображается сообщение, позволяющее выбрать между отменой преобразования и продолжением преобразования, при котором будет создан несоответствующий стандартам файл. Самое широкое распространение в издательском и печатном деле получили несколько разновидностей PDF/X: PDF/X-1a, PDF/X-3 и PDF/X-4.

Формат PDF/X-1a (2001 и 2003). 

PDF/X−1a — это стандартный формат файлов, специально предназначенный для обмена готовыми к печати документами в виде электронных данных, при котором отправителю и получателю не требуется дополнительной договоренности для обработки информации и получения требуемых результатов в тираже. Фактически он является цифровым эквивалентом цветоделенных фотоформ.

Формат PDF/X-1a гарантирует, что:

  • все шрифты встроены
  • изображения встроены
  • определены параметры MediaBox и TrimBox или ArtBox
  • цвета представлены в формате CMYK, в формате смесевых цветов или в обоих форматах сразу
  • назначение вывода задано посредством описания условий печати или указания ICC профиля.

Примечание: назначение вывода определяет тип печатного процесса, к которому готовится файл, например, тип печатной машины, используемые краски и бумага.

PDF-файлы, соответствующие стандарту PDF/X-1a, могут быть открыты в Acrobat 4.0 и Acrobat Reader 4.0, а также в их более поздних версиях.

Набор PDF/X-1a предусматривает использование формата PDF 1.3, снижение разрешения цветных изображений и изображений в градациях серого до 300 ppi, а монохромных — до 1200 ppi, встраивание всех шрифтов в виде подмножеств символов, отсутствие встроенных цветовых профилей, а также сводит прозрачные области в соответствии с параметром «Высокое разрешение».

При использовании PDF/X−1a совместимых файлов вам больше не придется волноваться, что вас могут попросить предоставить недостающие шрифты или изображения. Вам больше никогда не придется сталкиваться с преобразованием изображения из RGB в CMYK без предварительного просмотра результатов. Решения о том, должен ли при печати файлов использоваться треппинг, будут приниматься на основании надежной информации. И, наконец, в типографии будут знать, что файл правильно подготовлен для печатной машины, на которой он будет печататься.

РАЗМЕРЫ (PAGE BOXES) В PDF

MediaBox, CropBox, BleedBox, TrimBox и ArtBox — что это такое? Тот кто хотя бы раз сталкивался с форматом PDF более плотно, наверняка сталкивался с этими определениями. В то же время, как показал опыт, мало кто знает что это и зачем это нужно.

 001.jpg

Формат PDF удобен тем что точно передаёт в одном файле содержание и внешний вид документа, будь то просто текст или сложная комбинированная (векторная и растровая) графика. Среди прочих параметров, в нём хранится и размер документа (страницы). Однако этот размер не так однозначен, как может показаться на первый взгляд, поскольку существует до 5!!! различных вариантов описания этого размера. Эти варианты описания называются page boxes. Переводом «page box» на русский, с максимальным сохранением смысла в контексте допечатной подготовки, будет что-то вроде граница страницы, область документа, граница документа и т.п. 

MediaBox — используется для определения ширины и высоты страницы. Media box определяет размер материала (например, бумаги) на котором производится печать, media box это самый большой бокс документа, остальные боксы могут быть такими же или меньше, но ни в коем случае не могут быть больше чем media box.

CropBox — видимая область страницы в Acrobat’е, которая содержит в себе какую-либо информацию. Crop box — прямоугольник минимального размера в который поместились бы все видимые объекты (текст, картинки, линии, номера страниц, колонтитулы и т.п.) документа. Размер crop box может быть таким же или меньше чем media box. Acrobat использует этот размер для отображения и печати документов. Иными словами, когда Вы открываете файл в Acrobat’е, то все, что вы видите в данный момент отображается в виде Crop box.

BleedBox — определяет размер документа вместе с вылетами. Вылеты — часть изображения которая обрезается после печати, нужна для того чтобы компенсировать погрешность процесса порезки. На рисунке до подрезки bleed box — 76х106 мм, а после подрезки в обрезной размер (TrimBox) — 70х100 мм.

TrimBox — определяет размер изделия (так называемый, обрезной размер). Это конечный размер после подрезки. TrimBox так же может сопровождаться метками реза (техническими элементами файла).

ArtBox — используется редко, определяет художественную часть изделия, важную его часть. Если говорить дословно — ту самую часть где по замыслу автора из изделия должен доноситься арт, креатив и т.п.  

Как сделать PDF для печати?

Перед конвертацией в PDF все изображения должны быть переведены в CMYK. Если есть элементы, которые печатаются отдельными прогонами (пантоны), им должны быть назначены соответствующие цвета по палитрам Pantone Solid Coated/Uncoated. Цветовое пространство CMYK должно быть с профилем ISO Coated v2.

  • Corel Draw (на примере X4, английская версия)

File >  Publish to PDF >  указать название файла только латинскими символами >  Settings  >  Compability: PDF/x-1a >  Закладка Prepress поставить флажок на Bleed Limit и указать значение 5 мм > Закладка Objects поставить флажок на Export all Text as curves >  Нажать ОК и сохранить файл.

001_corel_draw_to_pdf (1).jpg

  • Adobe Illustator (на примере CS4, английская версия)

File > Save As > указать название файла только латинскими символами, в выпадающем списке «тип файла» выбрать Adobe PDF. Сохранить >  в поле Adobe PDF выбрать пункт PDF/X-1a:2001 >  в закладке Marks and Bleeds в разделе Bleeds выставить все значения по 5 мм (top, bottom, left, right) >  Save PDF

 002illustrator_to_pdf(2).jpg

  • Adobe Photoshop (на примере CS4, английская версия)

File >  Save As > указать название файла только латинскими символами, в выпадающем списке «тип файла» выбрать Photoshop PDF. Сохранить >  в поле Adobe PDF Preset выбрать пункт PDF/X-1a:2001 >  в закладке Output, в разделе Color, Color Conversion: No Color Conversion, Profile Inclusion Policy: Don’t Include Profile >  Save PDF

 003_photoshop_to_pdf.jpg

  • Adobe InDesign (на примере CS4, английская версия)

File >  Export… > указать название файла только латинскими символами, в выпадающем списке «тип файла» выбрать Adobe PDF. Сохранить >  в поле Adobe PDF Preset выбрать пункт PDF/X-1a:2001 >  в закладке General, установить диапазон печати All, флажок Spreads должен быть снят > в закладке Marks and Bleeds, в разделе Bleeds выставить все значения по 5 мм (top, bottom, left, right) >  в закладке Output, в разделе Color, Color Conversion: No Color Conversion, Profile Inclusion Policy: Don’t Include Profile  >  Export

 004_in_design_to_pdf(2).jpg

  • QuarkXPress (на примере 8.0, английская версия)

File >  Export > Layout as PDF > указать название файла только латинскими символами. Options >  в поле PDF Style выбрать пункт PDF/X-1a:2001 >  в закладке Pages, флажок Spreads должен быть снят > в закладке Bleed: Bleed Type – Symmetric, Amount 5 мм >  OК  >  Сохранить.

 005_quarkxpress_to_pdf.jpg

  • MS Office (на примере 2007).

Приложения MS Office не предназначены для подготовки файлов к высококачественной печати, поэтому даже конвертация макета в PDF не всегда избавляет от проблем. Гарантией того, что в готовом изделии Вы увидите то же, что и на мониторе, является только подписанная цветопроба. Минимизировать ошибки поможет сохранение документа в PDF. Сохранить как  >  Adobe PDF  >  Adobe PDF Conversion Options  >  поставить флажок на Make PDF/A-1а: 2005 compliant file >  Ok  >  указать название файла только латинскими символами  >  Сохранить файл

 

006_ms_office_to_pdf.jpg

  • Пгу мос ру итоговое сочинение
  • Пгт как пишется сокращенно
  • Пгт как пишется с точкой или без
  • Пвх профиль как пишется
  • Паяное соединение как пишется