mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-27 00:13:27 +03:00
Fixed PSDraw rectangle
This commit is contained in:
parent
dfe2cb7620
commit
ed98c668ee
|
@ -93,9 +93,9 @@ class PSDraw:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
%d %d M %d %d 0 Vr\n
|
%d %d M 0 %d %d Vr\n
|
||||||
"""
|
"""
|
||||||
self.fp.write(b"%d %d M %d %d 0 Vr\n" % box)
|
self.fp.write(b"%d %d M 0 %d %d Vr\n" % box)
|
||||||
|
|
||||||
def text(self, xy, text):
|
def text(self, xy, text):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user