mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-25 09:26:16 +03:00
Fully document PIL.ImageTk
This commit is contained in:
parent
81ea5c35cb
commit
4b4f090258
157
PIL/ImageTk.py
157
PIL/ImageTk.py
|
@ -34,13 +34,6 @@ except ImportError:
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
##
|
|
||||||
# The <b>ImageTk</b> module contains support to create and modify
|
|
||||||
# Tkinter <b>BitmapImage</b> and <b>PhotoImage</b> objects.
|
|
||||||
# <p>
|
|
||||||
# For examples, see the demo programs in the <i>Scripts</i>
|
|
||||||
# directory.
|
|
||||||
##
|
|
||||||
|
|
||||||
# --------------------------------------------------------------------
|
# --------------------------------------------------------------------
|
||||||
# Check for Tkinter interface hooks
|
# Check for Tkinter interface hooks
|
||||||
|
@ -61,28 +54,25 @@ def _pilbitmap_check():
|
||||||
# --------------------------------------------------------------------
|
# --------------------------------------------------------------------
|
||||||
# PhotoImage
|
# PhotoImage
|
||||||
|
|
||||||
##
|
|
||||||
# Creates a Tkinter-compatible photo image. This can be used
|
|
||||||
# everywhere Tkinter expects an image object. If the image is an RGBA
|
|
||||||
# image, pixels having alpha 0 are treated as transparent.
|
|
||||||
|
|
||||||
class PhotoImage:
|
class PhotoImage:
|
||||||
|
"""
|
||||||
|
A Tkinter-compatible photo image. This can be used
|
||||||
|
everywhere Tkinter expects an image object. If the image is an RGBA
|
||||||
|
image, pixels having alpha 0 are treated as transparent.
|
||||||
|
|
||||||
##
|
The constructor takes either a PIL image, or a mode and a size.
|
||||||
# Create a photo image object. The constructor takes either
|
Alternatively, you can use the **file** or **data** options to initialize
|
||||||
# a PIL image, or a mode and a size. Alternatively, you can
|
the photo image object.
|
||||||
# use the <b>file</b> or <b>data</b> options to initialize
|
|
||||||
# the photo image object.
|
:param image: Either a PIL image, or a mode string. If a mode string is
|
||||||
# <p>
|
used, a size must also be given.
|
||||||
# @def __init__(image=None, size=None, **options)
|
:param size: If the first argument is a mode string, this defines the size
|
||||||
# @param image Either a PIL image, or a mode string. If a
|
of the image.
|
||||||
# mode string is used, a size must also be given.
|
:keyword file: A filename to load the image from (using
|
||||||
# @param size If the first argument is a mode string, this
|
``Image.open(file)``).
|
||||||
# defines the size of the image.
|
:keyword data: An 8-bit string containing image data (as loaded from an
|
||||||
# @keyparam file A filename to load the image from (using
|
image file).
|
||||||
# Image.open(file)).
|
"""
|
||||||
# @keyparam data An 8-bit string containing image data (as
|
|
||||||
# loaded from an image file).
|
|
||||||
|
|
||||||
def __init__(self, image=None, size=None, **kw):
|
def __init__(self, image=None, size=None, **kw):
|
||||||
|
|
||||||
|
@ -130,44 +120,48 @@ class PhotoImage:
|
||||||
except:
|
except:
|
||||||
pass # ignore internal errors
|
pass # ignore internal errors
|
||||||
|
|
||||||
##
|
|
||||||
# Get the Tkinter photo image identifier. This method is
|
|
||||||
# automatically called by Tkinter whenever a PhotoImage object is
|
|
||||||
# passed to a Tkinter method.
|
|
||||||
#
|
|
||||||
# @return A Tkinter photo image identifier (a string).
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
|
"""
|
||||||
|
Get the Tkinter photo image identifier. This method is automatically
|
||||||
|
called by Tkinter whenever a PhotoImage object is passed to a Tkinter
|
||||||
|
method.
|
||||||
|
|
||||||
|
:return: A Tkinter photo image identifier (a string).
|
||||||
|
"""
|
||||||
return str(self.__photo)
|
return str(self.__photo)
|
||||||
|
|
||||||
##
|
|
||||||
# Get the width of the image.
|
|
||||||
#
|
|
||||||
# @return The width, in pixels.
|
|
||||||
|
|
||||||
def width(self):
|
def width(self):
|
||||||
|
"""
|
||||||
|
Get the width of the image.
|
||||||
|
|
||||||
|
:return: The width, in pixels.
|
||||||
|
"""
|
||||||
return self.__size[0]
|
return self.__size[0]
|
||||||
|
|
||||||
##
|
|
||||||
# Get the height of the image.
|
|
||||||
#
|
|
||||||
# @return The height, in pixels.
|
|
||||||
|
|
||||||
def height(self):
|
def height(self):
|
||||||
|
"""
|
||||||
|
Get the height of the image.
|
||||||
|
|
||||||
|
:return: The height, in pixels.
|
||||||
|
"""
|
||||||
return self.__size[1]
|
return self.__size[1]
|
||||||
|
|
||||||
##
|
|
||||||
# Paste a PIL image into the photo image. Note that this can
|
|
||||||
# be very slow if the photo image is displayed.
|
|
||||||
#
|
|
||||||
# @param im A PIL image. The size must match the target region.
|
|
||||||
# If the mode does not match, the image is converted to the
|
|
||||||
# mode of the bitmap image.
|
|
||||||
# @param box A 4-tuple defining the left, upper, right, and
|
|
||||||
# lower pixel coordinate. If None is given instead of a
|
|
||||||
# tuple, all of the image is assumed.
|
|
||||||
|
|
||||||
def paste(self, im, box=None):
|
def paste(self, im, box=None):
|
||||||
|
"""
|
||||||
|
Paste a PIL image into the photo image. Note that this can
|
||||||
|
be very slow if the photo image is displayed.
|
||||||
|
|
||||||
|
:param im: A PIL image. The size must match the target region. If the
|
||||||
|
mode does not match, the image is converted to the mode of
|
||||||
|
the bitmap image.
|
||||||
|
:param box: A 4-tuple defining the left, upper, right, and lower pixel
|
||||||
|
coordinate. If None is given instead of a tuple, all of
|
||||||
|
the image is assumed.
|
||||||
|
"""
|
||||||
|
|
||||||
# convert to blittable
|
# convert to blittable
|
||||||
im.load()
|
im.load()
|
||||||
|
@ -197,24 +191,21 @@ class PhotoImage:
|
||||||
# --------------------------------------------------------------------
|
# --------------------------------------------------------------------
|
||||||
# BitmapImage
|
# BitmapImage
|
||||||
|
|
||||||
##
|
|
||||||
# Create a Tkinter-compatible bitmap image. This can be used
|
|
||||||
# everywhere Tkinter expects an image object.
|
|
||||||
|
|
||||||
class BitmapImage:
|
class BitmapImage:
|
||||||
|
"""
|
||||||
|
|
||||||
##
|
A Tkinter-compatible bitmap image. This can be used everywhere Tkinter
|
||||||
# Create a Tkinter-compatible bitmap image.
|
expects an image object.
|
||||||
# <p>
|
|
||||||
# The given image must have mode "1". Pixels having value 0 are
|
The given image must have mode "1". Pixels having value 0 are treated as
|
||||||
# treated as transparent. Options, if any, are passed on to
|
transparent. Options, if any, are passed on to Tkinter. The most commonly
|
||||||
# Tkinter. The most commonly used option is <b>foreground</b>,
|
used option is **foreground**, which is used to specify the color for the
|
||||||
# which is used to specify the colour for the non-transparent
|
non-transparent parts. See the Tkinter documentation for information on
|
||||||
# parts. See the Tkinter documentation for information on how to
|
how to specify colours.
|
||||||
# specify colours.
|
|
||||||
#
|
:param image: A PIL image.
|
||||||
# @def __init__(image=None, **options)
|
"""
|
||||||
# @param image A PIL image.
|
|
||||||
|
|
||||||
def __init__(self, image=None, **kw):
|
def __init__(self, image=None, **kw):
|
||||||
|
|
||||||
|
@ -249,36 +240,38 @@ class BitmapImage:
|
||||||
except:
|
except:
|
||||||
pass # ignore internal errors
|
pass # ignore internal errors
|
||||||
|
|
||||||
##
|
|
||||||
# Get the width of the image.
|
|
||||||
#
|
|
||||||
# @return The width, in pixels.
|
|
||||||
|
|
||||||
def width(self):
|
def width(self):
|
||||||
|
"""
|
||||||
|
Get the width of the image.
|
||||||
|
|
||||||
|
:return: The width, in pixels.
|
||||||
|
"""
|
||||||
return self.__size[0]
|
return self.__size[0]
|
||||||
|
|
||||||
##
|
|
||||||
# Get the height of the image.
|
|
||||||
#
|
|
||||||
# @return The height, in pixels.
|
|
||||||
|
|
||||||
def height(self):
|
def height(self):
|
||||||
|
"""
|
||||||
|
Get the height of the image.
|
||||||
|
|
||||||
|
:return: The height, in pixels.
|
||||||
|
"""
|
||||||
return self.__size[1]
|
return self.__size[1]
|
||||||
|
|
||||||
##
|
|
||||||
# Get the Tkinter bitmap image identifier. This method is
|
|
||||||
# automatically called by Tkinter whenever a BitmapImage object
|
|
||||||
# is passed to a Tkinter method.
|
|
||||||
#
|
|
||||||
# @return A Tkinter bitmap image identifier (a string).
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
|
"""
|
||||||
|
Get the Tkinter bitmap image identifier. This method is automatically
|
||||||
|
called by Tkinter whenever a BitmapImage object is passed to a Tkinter
|
||||||
|
method.
|
||||||
|
|
||||||
|
:return: A Tkinter bitmap image identifier (a string).
|
||||||
|
"""
|
||||||
return str(self.__photo)
|
return str(self.__photo)
|
||||||
|
|
||||||
##
|
|
||||||
# Copies the contents of a PhotoImage to a PIL image memory.
|
|
||||||
|
|
||||||
def getimage(photo):
|
def getimage(photo):
|
||||||
|
"""Copies the contents of a PhotoImage to a PIL image memory."""
|
||||||
photo.tk.call("PyImagingPhotoGet", photo)
|
photo.tk.call("PyImagingPhotoGet", photo)
|
||||||
|
|
||||||
# --------------------------------------------------------------------
|
# --------------------------------------------------------------------
|
||||||
|
|
|
@ -94,14 +94,6 @@ can be found here.
|
||||||
:undoc-members:
|
:undoc-members:
|
||||||
:show-inheritance:
|
:show-inheritance:
|
||||||
|
|
||||||
:mod:`ImageTk` Module
|
|
||||||
---------------------
|
|
||||||
|
|
||||||
.. automodule:: PIL.ImageTk
|
|
||||||
:members:
|
|
||||||
:undoc-members:
|
|
||||||
:show-inheritance:
|
|
||||||
|
|
||||||
:mod:`ImageTransform` Module
|
:mod:`ImageTransform` Module
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
.. py:module:: PIL.ImageChops
|
.. py:module:: PIL.ImageChops
|
||||||
.. py:currentmodule:: PIL.ImageChops
|
.. py:currentmodule:: PIL.ImageChops
|
||||||
|
|
||||||
:py:mod:`ImageChops` Module
|
:py:mod:`ImageChops` ("Channel Operations") Module
|
||||||
===========================
|
==================================================
|
||||||
|
|
||||||
The :py:mod:`ImageChops` module contains a number of arithmetical image
|
The :py:mod:`ImageChops` module contains a number of arithmetical image
|
||||||
operations, called channel operations (“chops”). These can be used for various
|
operations, called channel operations (“chops”). These can be used for various
|
||||||
|
|
16
docs/reference/ImageTk.rst
Normal file
16
docs/reference/ImageTk.rst
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
.. py:module:: PIL.ImageTk
|
||||||
|
.. py:currentmodule:: PIL.ImageTk
|
||||||
|
|
||||||
|
:py:mod:`ImageTk` Module
|
||||||
|
========================
|
||||||
|
|
||||||
|
The :py:mod:`ImageTk` module contains support to create and modify Tkinter
|
||||||
|
BitmapImage and PhotoImage objects from PIL images.
|
||||||
|
|
||||||
|
For examples, see the demo programs in the Scripts directory.
|
||||||
|
|
||||||
|
.. autoclass:: PIL.ImageTk.BitmapImage
|
||||||
|
:members:
|
||||||
|
|
||||||
|
.. autoclass:: PIL.ImageTk.PhotoImage
|
||||||
|
:members:
|
|
@ -20,4 +20,5 @@ Reference
|
||||||
ImageQt
|
ImageQt
|
||||||
ImageSequence
|
ImageSequence
|
||||||
ImageStat
|
ImageStat
|
||||||
|
ImageTk
|
||||||
../PIL
|
../PIL
|
||||||
|
|
Loading…
Reference in New Issue
Block a user