pikepdf API

Primary objects

class pikepdf.Pdf

In-memory representation of a PDF

Root

the /Root object of the PDF

add_blank_page(*, page_size=(612, 792))

Add a blank page to this PD. If pages already exist, the page will be added to the end. Pages may be reordered using Pdf.pages.

The caller may add content to the page by modifying its objects after creating it.

Parameters:page_size (tuple) – The size of the page in PDF units (1/72 inch or 0.35mm). Default size is set to a US Letter 8.5” x 11” page.
check_linearization(self: pikepdf.Pdf, stream: object=sys.stderr) → None

Reports information on the PDF’s linearization

Parameters:stream – A stream to write this information too; must implement .write() and .flush() method. Defaults to sys.stderr.
close()

Close a Pdf object and release resources acquired by pikepdf

If pikepdf opened the file handle it will close it (e.g. when opened with a file path). If the caller opened the file for pikepdf, the caller close the file.

pikepdf lazily loads data from PDFs, so some pikepdf.Object may implicitly depend on the pikepdf.Pdf being open. This is always the case for pikepdf.Stream but can be true for any object. Do not close the Pdf object if you might still be accessing content from it.

When an Object is copied from one Pdf to another, the Object is copied into the destination Pdf immediately, so after accessing all desired information from the source Pdf it may be closed.

Caution:
Closing the Pdf is currently implemented by resetting it to an empty sentinel. It is currently possible to edit the sentinel as if it were a live object. This behavior should not be relied on and is subject to change.
copy_foreign(self: pikepdf.Pdf, arg0: pikepdf.Object) → pikepdf.Object

Copy object from foreign PDF to this one.

docinfo

access the document information dictionary

filename

the source filename of an existing PDF, when available

get_object(*args, **kwargs)

Overloaded function.

  1. get_object(self: pikepdf.Pdf, arg0: Tuple[int, int]) -> pikepdf.Object

    Look up an object by ID and generation number

    Returns:

    pikepdf.Object

  2. get_object(self: pikepdf.Pdf, arg0: int, arg1: int) -> pikepdf.Object

    Look up an object by ID and generation number

    Returns:

    pikepdf.Object

get_warnings(self: pikepdf.Pdf) → List[pikepdf.PdfError]
is_linearized

Returns True if the PDF is linearized.

Specifically returns True iff the file starts with a linearization parameter dictionary. Does no additional validation.

make_indirect(*args, **kwargs)

Overloaded function.

  1. make_indirect(self: pikepdf.Pdf, arg0: pikepdf.Object) -> pikepdf.Object

    Attach an object to the Pdf as an indirect object

    Direct objects appear inline in the binary encoding of the PDF. Indirect objects appear inline as references (in English, “look up object 4 generation 0”) and then read from another location in the file. The PDF specification requires that certain objects are indirect - consult the PDF specification to confirm.

    Generally a resource that is shared should be attached as an indirect object. pikepdf.Stream objects are always indirect, and creating them will automatically attach it to the Pdf.

    See Also:

    pikepdf.Object.is_indirect()

    Returns:

    pikepdf.Object

  2. make_indirect(self: pikepdf.Pdf, arg0: object) -> pikepdf.Object

    Encode a Python object and attach to this Pdf as an indirect object

    Returns:

    pikepdf.Object

make_stream(data)

Create a new pikepdf.Stream object that is attached to this PDF.

Parameters:data (bytes) – Binary data for the stream object
new() → pikepdf.Pdf

Create a new empty PDF from stratch.

open(filename_or_stream: object, password: str='', hex_password: bool=False, ignore_xref_streams: bool=False, suppress_warnings: bool=True, attempt_recovery: bool=True, inherit_page_attributes: bool=True) → pikepdf.Pdf

Open an existing file at filename_or_stream.

If filename_or_stream is path-like, the file will be opened for reading. The file should not be modified by another process while it is open in pikepdf. The file will not be altered when opened in this way. Any changes to the file must be persisted by using .save().

If filename_or_stream has .read() and .seek() methods, the file will be accessed as a readable binary stream. pikepdf will read the entire stream into a private buffer.

.open() may be used in a with-block, .`close()` will be called when the block exists.

Examples

>>> with Pdf.open("test.pdf") as pdf:
        ...
>>> pdf = Pdf.open("test.pdf", password="rosebud")
Parameters:
  • filename_or_stream (os.PathLike) – Filename of PDF to open
  • password (str or bytes) – User or owner password to open an encrypted PDF. If a str is given it will be converted to UTF-8.
  • hex_password (bool) – If True, interpret the password as a hex-encoded version of the exact encryption key to use, without performing the normal key computation. Useful in forensics.
  • ignore_xref_streams (bool) – If True, ignore cross-reference streams. See qpdf documentation.
  • suppress_warnings (bool) – If True (default), warnings are not printed to stderr. Use pikepdf.Pdf.get_warnings() to retrieve warnings.
  • attempt_recovery (bool) – If True (default), attempt to recover from PDF parsing errors.
  • inherit_page_attributes (bool) – If True (default), push attributes set on a group of pages to individual pages
Raises:
  • pikepdf.PasswordError – If the password failed to open the file.
  • pikepdf.PdfError – If for other reasons we could not open the file.
  • TypeError – If the type of filename_or_stream is not usable.
  • FileNotFoundError – If the file was not found.
open_metadata(set_pikepdf_as_editor=True, update_docinfo=True)

Open the PDF’s XMP metadata for editing

Recommend for use in a with block. Changes are committed to the PDF when the block exits. (The Pdf must still be opened.)

Example

>>> with pdf.open_metadata() as meta:
        meta['dc:title'] = 'Set the Dublic Core Title'
        meta['dc:description'] = 'Put the Abstract here'
Parameters:
  • set_pikepdf_as_editor (bool) – Update the metadata to show that this version of pikepdf is the most software to modify the metadata. Recommended, except for testing.
  • update_docinfo (bool) – Update the deprecated PDF DocumentInfo block to be consistent with XMP.
Returns:

pikepdf.models.PdfMetadata

pdf_version

the PDF standard version, such as ‘1.7’

remove_unreferenced_resources(self: pikepdf.Pdf) → None

Remove from /Resources of each page any object not referenced in page’s contents

PDF pages may share resource dictionaries with other pages. If pikepdf is used for page splitting, pages may reference resources in their /Resources dictionary that are not actually required. This purges all unnecessary resource entries.

Suggested before saving.

root

alias for .Root, the /Root object of the PDF

save(self: pikepdf.Pdf, filename: object, static_id: bool=False, preserve_pdfa: bool=True, min_version: str='', force_version: str='', fix_metadata_version: bool=True, compress_streams: bool=True, stream_decode_level: pikepdf._qpdf.StreamDecodeLevel=StreamDecodeLevel.generalized, object_stream_mode: pikepdf.ObjectStreamMode=ObjectStreamMode.preserve, normalize_content: bool=False, linearize: bool=False, qdf: bool=False, progress: object=None) → None

Save all modifications to this pikepdf.Pdf.

Parameters:
  • filename (str or stream) – Where to write the output. If a file exists in this location it will be overwritten.
  • static_id (bool) – Indicates that the /ID metadata, normally calculated as a hash of certain PDF contents and metadata including the current time, should instead be generated deterministically. Normally for debugging.
  • preserve_pdfa (bool) – Ensures that the file is generated in a manner compliant with PDF/A and other stricter variants. This should be True, the default, in most cases.
  • min_version (str) – Sets the minimum version of PDF specification that should be required. If left alone QPDF will decide.
  • force_version (str) – Override the version recommend by QPDF, potentially creating an invalid file that does not display in old versions. See QPDF manual for details.
  • fix_metadata_version (bool) – If True (default) and the XMP metadata contains the optional PDF version field, ensure the version in metadata is correct. If the XMP metadata does not contain a PDF version field, none will be added. To ensure that the field is added, edit the metadata and insert a placeholder value in pdf:PDFVersion.
  • object_stream_mode (pikepdf.ObjectStreamMode) – disable prevents the use of object streams. preserve keeps object streams from the input file. generate uses object streams wherever possible, creating the smallest files but requiring PDF 1.5+.
  • compress_streams (bool) – Enables or disables the compression of stream objects in the PDF. Metadata is never compressed. By default this is set to True, and should be except for debugging.
  • stream_decode_level (pikepdf.StreamDecodeLevel) – Specifies how to encode stream objects. See documentation for StreamDecodeLevel.
  • normalize_content (bool) – Enables parsing and reformatting the content stream within PDFs. This may debugging PDFs easier.
  • linearize (bool) – Enables creating linear or “fast web view”, where the file’s contents are organized sequentially so that a viewer can begin rendering before it has the whole file. As a drawback, it tends to make files larger.
  • qdf (bool) – Save output QDF mode. QDF mode is a special output mode in QPDF to allow editing of PDFs in a text editor. Use the program fix-qdf to fix convert back to a standard PDF.
  • progress (callable) – Specify a callback function that is called as the PDF is written. The function will be called with an integer between 0-100 as the sole parameter, the progress percentage. This function may not access or modify the PDF while it is being written, or data corruption will almost certainly occur.

You may call .save() multiple times with different parameters to generate different versions of a file, and you may continue to modify the file after saving it. .save() does not modify the Pdf object in memory, except possibly by updating the XMP metadata version with fix_metadata_version.

Note

pikepdf.Pdf.remove_unreferenced_resources() before saving may eliminate unnecessary resources from the output file, so calling this method before saving is recommended. This is not done automatically because .save() is intended to be idempotent.

show_xref_table(self: pikepdf.Pdf) → None

Pretty-print the Pdf’s xref (cross-reference table)

trailer

Provides access to the PDF trailer object.

See section 7.5.5 of the PDF reference manual. Generally speaking, the trailer should not be modified with pikepdf, and modifying it may not work. Some of the values in the trailer are automatically changed when a file is saved.

pikepdf.open(*args, **kwargs)

Alias for pikepdf.Pdf.open(). Open a PDF.

class pikepdf.ObjectStreamMode

Options for saving object streams within PDFs, which are more a compact way of saving certains types of data that was added in PDF 1.5. All modern PDF viewers support object streams, but some third party tools and libraries cannot read them.

disable

Disable the use of object streams. If any object streams exist in the file, remove them when the file is saved.

preserve

Preserve any existing object streams in the original file. This is the default behavior.

generate

Generate object streams.

class pikepdf.StreamDecodeLevel
none

Do not attempt to apply any filters. Streams remain as they appear in the original file. Note that uncompressed streams may still be compressed on output. You can disable that by calling setCompressStreams(false).

generalized

This is the default. libqpdf will apply LZWDecode, ASCII85Decode, ASCIIHexDecode, and FlateDecode filters on the input. When combined with setCompressStreams(true), which the default, the effect of this is that streams filtered with these older and less efficient filters will be recompressed with the Flate filter. As a special case, if a stream is already compressed with FlateDecode and setCompressStreams is enabled, the original compressed data will be preserved.

specialized

In addition to uncompressing the generalized compression formats, supported non-lossy compression will also be be decoded. At present, this includes the RunLengthDecode filter.

all

In addition to generalized and non-lossy specialized filters, supported lossy compression filters will be applied. At present, this includes DCTDecode (JPEG) compression. Note that compressing the resulting data with DCTDecode again will accumulate loss, so avoid multiple compression and decompression cycles. This is mostly useful for retrieving image data.

exception pikepdf.PdfError
exception pikepdf.PasswordError

Object construction

class pikepdf.Object
as_dict(self: pikepdf.Object) → pikepdf._qpdf._ObjectMapping
as_list(self: pikepdf.Object) → pikepdf._qpdf._ObjectList
get(*args, **kwargs)

Overloaded function.

  1. get(self: pikepdf.Object, key: str, default_: object=None) -> object

for dictionary objects, behave as dict.get(key, default=None)

  1. get(self: pikepdf.Object, key: pikepdf.Object, default_: object=None) -> object

for dictionary objects, behave as dict.get(key, default=None)

get_raw_stream_buffer(self: pikepdf.Object) → pikepdf._qpdf.Buffer

Return a buffer protocol buffer describing the raw, encoded stream

get_stream_buffer(self: pikepdf.Object) → pikepdf._qpdf.Buffer

Return a buffer protocol buffer describing the decoded stream

is_owned_by(self: pikepdf.Object, arg0: pikepdf.Pdf) → bool

Test if this object is owned by the indicated possible_owner.

items(self: pikepdf.Object) → iterable
keys(self: pikepdf.Object) → Set[str]
objgen

Return the object-generation number pair for this object

If this is a direct object, then the returned value is (0, 0). By definition, if this is an indirect object, it has a “objgen”, and can be looked up using this in the cross-reference (xref) table. Direct objects cannot necessarily be looked up.

The generation number is usually 0, except for PDFs that have been incrementally updated.

page_contents_add(self: pikepdf.Object, contents: pikepdf.Object, prepend: bool=False) → None

Append or prepend to an existing page’s content stream.

page_contents_coalesce(self: pikepdf.Object) → None
parse(stream: str, description: str='') → pikepdf.Object

Parse PDF binary representation into PDF objects.

read_bytes(self: pikepdf.Object) → bytes

Decode and read the content stream associated with this object

read_raw_bytes(self: pikepdf.Object) → bytes

Read the content stream associated with this object without decoding

to_json(self: pikepdf.Object, dereference: bool=False) → bytes

Convert to a QPDF JSON representation of the object.

See the QPDF manual for a description of its JSON representation. http://qpdf.sourceforge.net/files/qpdf-manual.html#ref.json

Not necessarily compatible with other PDF-JSON representations that exist in the wild.

Excerpt from QPDF documentation:

  • Names are encoded as strings representing the normalized value of getName()
  • Indirect references are encoded as strings containing “obj gen R”
  • Strings are encoded as UTF-8 strings with unrepresentable binary characters encoded as uHHHH
  • Encoding streams just encodes the stream’s dictionary; the stream data is not represented
  • Object types that are only valid in content streams (inline image, operator) as well as “reserved” objects are not representable and will be serialized as “null”.
Parameters:dereference (bool) – If True, deference the object is this is an indirect object.
Returns:JSON bytestring of object. The object is UTF-8 encoded and may be decoded to a Python str that represents the binary values x00-xFF as U+0000 to U+00FF; that is, it may contain mojibake.
Return type:bytes
unparse(self: pikepdf.Object, resolved: bool=False) → bytes

Convert PDF objects into their binary representation, optionally resolving indirect objects.

write(self: pikepdf.Object, arg0: bytes, *args, **kwargs) → None

Replace the content stream with data, compressed according to filter and decode_parms

Parameters:
  • data (bytes) – the new data to use for replacement
  • filter – The filter(s) with which the data is (already) encoded
  • decode_parms – Parameters for the filters with which the object is encode

If only one filter is specified, it may be a name such as Name(‘/FlateDecode’). If there are multiple filters, then array of names should be given.

If there is only one filter, decode_parms is a Dictionary of parameters for that filter. If there are multiple filters, then decode_parms is an Array of Dictionary, where each array index is corresponds to the filter.

class pikepdf.Name

Constructs a PDF Name object

Names can be constructed with two notations:

  1. Name.Resources
  2. Name('/Resources')

The two are semantically equivalent. The former is preferred for names that are normally expected to be in a PDF. The latter is preferred for dynamic names and attributes.

static __new__(cls, name)

Create and return a new object. See help(type) for accurate signature.

class pikepdf.String

Constructs a PDF String object

static __new__(cls, s)
Parameters:s (str or bytes) – The string to use. String will be encoded for PDF, bytes will be constructed without encoding.
Returns:pikepdf.Object
class pikepdf.Array

Constructs a PDF Array object

static __new__(cls, a=None)
Parameters:a (iterable) – A list of objects. All objects must be either pikepdf.Object or convertible to pikepdf.Object.
Returns:pikepdf.Object
class pikepdf.Dictionary

Constructs a PDF Dictionary object

static __new__(cls, d=None, **kwargs)

Constructs a PDF Dictionary from either a Python dict or keyword arguments.

These two examples are equivalent:

pikepdf.Dictionary({'/NameOne': 1, '/NameTwo': 'Two'})

pikepdf.Dictionary(NameOne=1, NameTwo='Two')

In either case, the keys must be strings, and the strings correspond to the desired Names in the PDF Dictionary. The values must all be convertible to pikepdf.Object.

Returns:pikepdf.Object
class pikepdf.Stream

Constructs a PDF Stream object

static __new__(cls, owner, obj)
Parameters:
  • owner (pikepdf.Pdf) – The Pdf to which this stream shall be attached.
  • obj (bytes or list) – If bytes, the data bytes for the stream. If list, a list of (operands, operator) tuples such as returned by pikepdf.parse_content_stream().
Returns:

pikepdf.Object

class pikepdf.Operator(arg0: str) → pikepdf.Object

Construct a PDF Operator object for use in content streams

Support models

pikepdf.parse_content_stream(page_or_stream, operators='')

Parse a PDF content stream into a sequence of instructions.

A PDF content stream is list of instructions that describe where to render the text and graphics in a PDF. This is the starting point for analyzing PDFs.

If the input is a page and page.Contents is an array, then the content stream is automatically treated as one coalesced stream.

Each instruction contains at least one operator and zero or more operands.

Parameters:
  • page_or_stream (pikepdf.Object) – A page object, or the content stream attached to another object such as a Form XObject.
  • operators (str) – A space-separated string of operators to whitelist. For example ‘q Q cm Do’ will return only operators that pertain to drawing images. Use ‘BI ID EI’ for inline images. All other operators and associated tokens are ignored. If blank, all tokens are accepted.
Returns:

List of (operands, command) tuples where command is an

operator (str) and operands is a tuple of str; the PDF drawing command and the command’s operands, respectively.

Return type:

list

Example

>>> pdf = pikepdf.Pdf.open(input_pdf)
>>> page = pdf.pages[0]
>>> for operands, command in parse_content_stream(page):
>>>     print(command)
class pikepdf.PdfMatrix(*args)

Support class for PDF content stream matrices

PDF content stream matrices are 3x3 matrices summarized by a shorthand (a, b, c, d, e, f) which correspond to the first two column vectors. The final column vector is always (0, 0, 1) since this is using homogenous coordinates.

PDF uses row vectors. That is, vr @ A' gives the effect of transforming a row vector vr=(x, y, 1) by the matrix A'. Most textbook treatments use A @ vc where the column vector vc=(x, y, 1)'.

(@ is the Python matrix multiplication operator added in Python 3.5.)

Addition and other operations are not implemented because they’re not that meaningful in a PDF context (they can be defined and are mathematically meaningful in general).

PdfMatrix objects are immutable. All transformations on them produce a new matrix.

a
b
c
d
e
f

Return one of the six “active values” of the matrix.

encode()

Encode this matrix in binary suitable for including in a PDF

static identity()

Constructs and returns an identity matrix

rotated(angle_degrees_ccw)

Concatenates a rotation matrix on this matrix

scaled(x, y)

Concatenates a scaling matrix on this matrix

shorthand

Return the 6-tuple (a,b,c,d,e,f) that describes this matrix

translated(x, y)

Translates this matrix

class pikepdf.PdfImage(obj)

Support class to provide a consistent API for manipulating PDF images

The data structure for images inside PDFs is irregular and flexible, making it difficult to work with without introducing errors for less typical cases. This class addresses these difficulties by providing a regular, Pythonic API similar in spirit (and convertible to) the Python Pillow imaging library.

as_pil_image()

Extract the image as a Pillow Image, using decompression as necessary

Returns:PIL.Image.Image
extract_to(*, stream=None, fileprefix='')

Attempt to extract the image directly to a usable image file

If possible, the compressed data is extracted and inserted into a compressed image file format without transcoding the compressed content. If this is not possible, the data will be decompressed and extracted to an appropriate format.

Because it is not known until attempted what image format will be extracted, users should not assume what format they are getting back. When saving the image to a file, use a temporary filename, and then rename the file to its final name based on the returned file extension.

Examples

>>> im.extract_to(stream=bytes_io)
'.png'
>>> im.extract_to(fileprefix='/tmp/image00')
'/tmp/image00.jpg'
Parameters:
  • stream – Writable stream to write data to.
  • fileprefix (str or Path) – The path to write the extracted image to, without the file extension.
Returns:

If fileprefix was provided, then the fileprefix with the

appropriate extension. If no fileprefix, then an extension indicating the file type.

Return type:

str

get_stream_buffer()

Access this image with the buffer protocol

is_inline

False for image XObject

read_bytes()

Decompress this image and return it as unencoded bytes

show()

Show the image however PIL wants to

class pikepdf.PdfInlineImage(*, image_data, image_object: tuple)

Support class for PDF inline images

class pikepdf.models.PdfMetadata(pdf, pikepdf_mark=True, sync_docinfo=True)

Read and edit the metadata associated with a PDF

The PDF specification contain two types of metadata, the newer XMP (Extensible Metadata Platform, XML-based) and older DocumentInformation dictionary. The PDF 2.0 specification removes the DocumentInformation dictionary.

This primarily works with XMP metadata, but includes methods to generate XMP from DocumentInformation and will also coordinate updates to DocumentInformation so that the two are kept consistent.

XMP metadata fields may be accessed using the full XML namespace URI or the short name. For example metadata['dc:description'] and metadata['{http://purl.org/dc/elements/1.1/}description'] both refer to the same field. Several common XML namespaces are registered automatically.

See the XMP specification for details of allowable fields.

To update metadata, use a with block.

Example

>>> with pdf.open_metadata() as records:
        records['dc:title'] = 'New Title'
load_from_docinfo(docinfo, delete_missing=False, raise_failure=False)

Populate the XMP metadata object with DocumentInfo

Parameters:
  • docinfo – a DocumentInfo, e.g pdf.docinfo
  • delete_missing – if the entry is not DocumentInfo, delete the equivalent from XMP
  • raise_failure – if True, raise any failure to convert docinfo; otherwise warn and continue

A few entries in the deprecated DocumentInfo dictionary are considered approximately equivalent to certain XMP records. This method copies those entries into the XMP metadata.

pdfa_status

Returns the PDF/A conformance level claimed by this PDF, or False

A PDF may claim to PDF/A compliant without this being true. Use an independent verifier such as veraPDF to test if a PDF is truly conformant.

Returns:The conformance level of the PDF/A, or an empty string if the PDF does not claim PDF/A conformance. Possible valid values are: 1A, 1B, 2A, 2B, 2U, 3A, 3B, 3U.
Return type:str
pdfx_status

Returns the PDF/X conformance level claimed by this PDF, or False

A PDF may claim to PDF/X compliant without this being true. Use an independent verifier such as veraPDF to test if a PDF is truly conformant.

Returns:The conformance level of the PDF/X, or an empty string if the PDF does not claim PDF/X conformance.
Return type:str