mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 10:46:16 +03:00
Clarify that a single value is returned, and depends on the text direction
This commit is contained in:
parent
7d7bc2671d
commit
62cd236d1a
|
@ -538,7 +538,7 @@ Methods
|
||||||
It should be a `BCP 47 language code`_.
|
It should be a `BCP 47 language code`_.
|
||||||
Requires libraqm.
|
Requires libraqm.
|
||||||
:param embedded_color: Whether to use font embedded color glyphs (COLR, CBDT, SBIX).
|
:param embedded_color: Whether to use font embedded color glyphs (COLR, CBDT, SBIX).
|
||||||
:return: Width for horizontal, height for vertical text.
|
:return: Either width for horizontal text, or height for vertical text.
|
||||||
|
|
||||||
.. py:method:: ImageDraw.textbbox(xy, text, font=None, anchor=None, spacing=4, align="left", direction=None, features=None, language=None, stroke_width=0, embedded_color=False)
|
.. py:method:: ImageDraw.textbbox(xy, text, font=None, anchor=None, spacing=4, align="left", direction=None, features=None, language=None, stroke_width=0, embedded_color=False)
|
||||||
|
|
||||||
|
|
|
@ -318,7 +318,7 @@ class FreeTypeFont:
|
||||||
<https://www.w3.org/International/articles/language-tags/>`_
|
<https://www.w3.org/International/articles/language-tags/>`_
|
||||||
Requires libraqm.
|
Requires libraqm.
|
||||||
|
|
||||||
:return: Width for horizontal, height for vertical text.
|
:return: Either width for horizontal text, or height for vertical text.
|
||||||
"""
|
"""
|
||||||
_string_length_check(text)
|
_string_length_check(text)
|
||||||
return self.font.getlength(text, mode, direction, features, language) / 64
|
return self.font.getlength(text, mode, direction, features, language) / 64
|
||||||
|
|
Loading…
Reference in New Issue
Block a user