diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-04-17 10:10:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-17 10:10:39 (GMT) |
commit | f44ce356a6ccd6c8e80ac5c4b29adb13db5c117a (patch) | |
tree | 4f1a83bbc745816e7410b187fca9b1e1ee69c910 | |
parent | 70955450bd97dfd56c2440b04bf46e7e276eba59 (diff) | |
download | cpython-f44ce356a6ccd6c8e80ac5c4b29adb13db5c117a.zip cpython-f44ce356a6ccd6c8e80ac5c4b29adb13db5c117a.tar.gz cpython-f44ce356a6ccd6c8e80ac5c4b29adb13db5c117a.tar.bz2 |
bpo-33283: Mention PNG as a supported format by Tcl/Tk. (GH-6479)
(cherry picked from commit 4b685bf7192fff48c8effeeae4f4d64f9420ec0f)
Co-authored-by: Andrés Delfino <34587441+andresdelfino@users.noreply.github.com>
-rw-r--r-- | Doc/library/tkinter.rst | 9 | ||||
-rw-r--r-- | Lib/tkinter/__init__.py | 4 |
2 files changed, 7 insertions, 6 deletions
diff --git a/Doc/library/tkinter.rst b/Doc/library/tkinter.rst index f51add2..d6e33eb 100644 --- a/Doc/library/tkinter.rst +++ b/Doc/library/tkinter.rst @@ -783,12 +783,13 @@ Menu indexes (menu.invoke(), menu.entryconfig(), etc.) Images ^^^^^^ -Bitmap/Pixelmap images can be created through the subclasses of -:class:`tkinter.Image`: +Images of different formats can be created through the corresponding subclass +of :class:`tkinter.Image`: -* :class:`BitmapImage` can be used for X11 bitmap data. +* :class:`BitmapImage` for images in XBM format. -* :class:`PhotoImage` can be used for GIF and PPM/PGM color bitmaps. +* :class:`PhotoImage` for images in PGM, PPM, GIF and PNG formats. The latter + is supported starting with Tk 8.6. Either type of image is created through either the ``file`` or the ``data`` option (other options are available as well). diff --git a/Lib/tkinter/__init__.py b/Lib/tkinter/__init__.py index 53bad3f..b78191e 100644 --- a/Lib/tkinter/__init__.py +++ b/Lib/tkinter/__init__.py @@ -3533,7 +3533,7 @@ class Image: self.tk.call('image', 'width', self.name)) class PhotoImage(Image): - """Widget which can display colored images in GIF, PPM/PGM format.""" + """Widget which can display images in PGM, PPM, GIF, PNG format.""" def __init__(self, name=None, cnf={}, master=None, **kw): """Create an image with NAME. @@ -3597,7 +3597,7 @@ class PhotoImage(Image): self.tk.call(args) class BitmapImage(Image): - """Widget which can display a bitmap.""" + """Widget which can display images in XBM format.""" def __init__(self, name=None, cnf={}, master=None, **kw): """Create a bitmap with NAME. |