Internal Modules

_binary Module

Binary input/output support routines.

PIL._binary.i16be(c, o=0)[source]
PIL._binary.i16le(c, o=0)[source]

Converts a 2-bytes (16 bits) string to an unsigned integer.

Parameters:
  • c – string containing bytes to convert

  • o – offset of bytes to convert in string

PIL._binary.i32be(c, o=0)[source]
PIL._binary.i32le(c, o=0)[source]

Converts a 4-bytes (32 bits) string to an unsigned integer.

Parameters:
  • c – string containing bytes to convert

  • o – offset of bytes to convert in string

PIL._binary.i8(c)[source]
PIL._binary.o16be(i)[source]
PIL._binary.o16le(i)[source]
PIL._binary.o32be(i)[source]
PIL._binary.o32le(i)[source]
PIL._binary.o8(i)[source]
PIL._binary.si16be(c, o=0)[source]

Converts a 2-bytes (16 bits) string to a signed integer, big endian.

Parameters:
  • c – string containing bytes to convert

  • o – offset of bytes to convert in string

PIL._binary.si16le(c, o=0)[source]

Converts a 2-bytes (16 bits) string to a signed integer.

Parameters:
  • c – string containing bytes to convert

  • o – offset of bytes to convert in string

PIL._binary.si32le(c, o=0)[source]

Converts a 4-bytes (32 bits) string to a signed integer.

Parameters:
  • c – string containing bytes to convert

  • o – offset of bytes to convert in string

_deprecate Module

PIL._deprecate.deprecate(deprecated: str, when: int | None, replacement: str | None = None, *, action: str | None = None, plural: bool = False) None[source]

Deprecations helper.

Parameters:
  • deprecated – Name of thing to be deprecated.

  • when – Pillow major version to be removed in.

  • replacement – Name of replacement.

  • action – Instead of “replacement”, give a custom call to action e.g. “Upgrade to new thing”.

  • plural – if the deprecated thing is plural, needing “are” instead of “is”.

Usually of the form:

“[deprecated] is deprecated and will be removed in Pillow [when] (yyyy-mm-dd). Use [replacement] instead.”

You can leave out the replacement sentence:

“[deprecated] is deprecated and will be removed in Pillow [when] (yyyy-mm-dd)”

Or with another call to action:

“[deprecated] is deprecated and will be removed in Pillow [when] (yyyy-mm-dd). [action].”

_tkinter_finder Module

Find compiled module linking to Tcl / Tk libraries

_util Module

class PIL._util.DeferredError(ex)[source]

Bases: object

PIL._util.is_directory(f)[source]

Checks if an object is a string, and that it points to a directory.

PIL._util.is_path(f)[source]

_version Module

PIL._version.__version__: str

This is the master version number for Pillow, all other uses reference this module.

PIL.Image.core Module

An internal interface module previously known as _imaging, implemented in _imaging.c.