mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Merge pull request #6533 from nulano/document_imagedraw_attributes
This commit is contained in:
commit
7a06bc6357
|
@ -139,17 +139,50 @@ Functions
|
||||||
must be the same as the image mode. If omitted, the mode
|
must be the same as the image mode. If omitted, the mode
|
||||||
defaults to the mode of the image.
|
defaults to the mode of the image.
|
||||||
|
|
||||||
|
Attributes
|
||||||
|
----------
|
||||||
|
|
||||||
|
.. py:attribute:: ImageDraw.fill
|
||||||
|
:type: bool
|
||||||
|
:value: False
|
||||||
|
|
||||||
|
Selects whether :py:attr:`ImageDraw.ink` should be used as a fill or outline color.
|
||||||
|
|
||||||
|
.. py:attribute:: ImageDraw.font
|
||||||
|
|
||||||
|
The current default font.
|
||||||
|
|
||||||
|
Can be set per instance::
|
||||||
|
|
||||||
|
from PIL import ImageDraw, ImageFont
|
||||||
|
draw = ImageDraw.Draw(image)
|
||||||
|
draw.font = ImageFont.truetype("Tests/fonts/FreeMono.ttf")
|
||||||
|
|
||||||
|
Or globally for all future ImageDraw instances::
|
||||||
|
|
||||||
|
from PIL import ImageDraw, ImageFont
|
||||||
|
ImageDraw.ImageDraw.font = ImageFont.truetype("Tests/fonts/FreeMono.ttf")
|
||||||
|
|
||||||
|
.. py:attribute:: ImageDraw.fontmode
|
||||||
|
|
||||||
|
The current font drawing mode.
|
||||||
|
|
||||||
|
Set to ``"1"`` to disable antialiasing or ``"L"`` to enable it.
|
||||||
|
|
||||||
|
.. py:attribute:: ImageDraw.ink
|
||||||
|
:type: int
|
||||||
|
|
||||||
|
The internal representation of the current default color.
|
||||||
|
|
||||||
Methods
|
Methods
|
||||||
-------
|
-------
|
||||||
|
|
||||||
.. py:method:: ImageDraw.getfont()
|
.. py:method:: ImageDraw.getfont()
|
||||||
|
|
||||||
Get the current default font.
|
Get the current default font, :py:attr:`ImageDraw.font`.
|
||||||
|
|
||||||
To set the default font for all future ImageDraw instances::
|
If the current default font is ``None``,
|
||||||
|
it is initialized with :py:func:`.ImageFont.load_default`.
|
||||||
from PIL import ImageDraw, ImageFont
|
|
||||||
ImageDraw.ImageDraw.font = ImageFont.truetype("Tests/fonts/FreeMono.ttf")
|
|
||||||
|
|
||||||
:returns: An image font.
|
:returns: An image font.
|
||||||
|
|
||||||
|
|
|
@ -87,17 +87,25 @@ class ImageDraw:
|
||||||
self.fontmode = "1"
|
self.fontmode = "1"
|
||||||
else:
|
else:
|
||||||
self.fontmode = "L" # aliasing is okay for other modes
|
self.fontmode = "L" # aliasing is okay for other modes
|
||||||
self.fill = 0
|
self.fill = False
|
||||||
|
|
||||||
def getfont(self):
|
def getfont(self):
|
||||||
"""
|
"""
|
||||||
Get the current default font.
|
Get the current default font.
|
||||||
|
|
||||||
|
To set the default font for this ImageDraw instance::
|
||||||
|
|
||||||
|
from PIL import ImageDraw, ImageFont
|
||||||
|
draw.font = ImageFont.truetype("Tests/fonts/FreeMono.ttf")
|
||||||
|
|
||||||
To set the default font for all future ImageDraw instances::
|
To set the default font for all future ImageDraw instances::
|
||||||
|
|
||||||
from PIL import ImageDraw, ImageFont
|
from PIL import ImageDraw, ImageFont
|
||||||
ImageDraw.ImageDraw.font = ImageFont.truetype("Tests/fonts/FreeMono.ttf")
|
ImageDraw.ImageDraw.font = ImageFont.truetype("Tests/fonts/FreeMono.ttf")
|
||||||
|
|
||||||
|
If the current default font is ``None``,
|
||||||
|
it is initialized with ``ImageFont.load_default()``.
|
||||||
|
|
||||||
:returns: An image font."""
|
:returns: An image font."""
|
||||||
if not self.font:
|
if not self.font:
|
||||||
# FIXME: should add a font repository
|
# FIXME: should add a font repository
|
||||||
|
|
Loading…
Reference in New Issue
Block a user