Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't use "align=center" together with "embedded_color=True" #6515

Closed
CandreaA opened this issue Aug 21, 2022 · 1 comment 路 Fixed by #6517
Closed

Can't use "align=center" together with "embedded_color=True" #6515

CandreaA opened this issue Aug 21, 2022 · 1 comment 路 Fixed by #6517

Comments

@CandreaA
Copy link

CandreaA commented Aug 21, 2022

What did you do?

textwrapped = "Hello, world! 馃憢 Here are some emojis: 馃帹 馃寠 馃槑"
font = ImageFont.truetype(THIS_FOLDER+"/fonts/seguiemj.ttf", font_size) //[merged font](https://github.com/thedemons/merge_color_emoji_font)
d.text((int(qx),int(qy)), text=textwrapped, align="center", fill="#fff", font=font,  embedded_color=True)

What did you expect to happen?

center multiline text

What actually happened?

if i use "embedded_color=True" together with "align=center" i get this error:

 d.text((int(qx),int(qy)), text=textwrapped, align="center", fill="#fff", font=font, embedded_color=True)
  File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\PIL\ImageDraw.py", line 409, in text
    return self.multiline_text(
  File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\PIL\ImageDraw.py", line 563, in multiline_text
    self.text(
  File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\PIL\ImageDraw.py", line 498, in text
    draw_text(ink)
  File "C:\Users\user\AppData\Local\Programs\Python\Python310\lib\site-packages\PIL\ImageDraw.py", line 480, in draw_text
    self.im.paste(color, coord + coord2, mask)
TypeError: 'float' object cannot be interpreted as an integer

If i remove "align=center" see here: https://imgur.com/a/rLnenPj - embedded color works fine:

image

If i remove "embedded_color=True" see here: https://imgur.com/a/Exq6aYe - align center works fine:

image

but they cant work together.

What are your OS, Python and Pillow versions?

  • OS: Windows 10
  • Python: 3.10
  • Pillow: 9.2
@radarhere
Copy link
Member

I've created PR #6517 to resolve this. The problem is occurring for multiline center aligned embedded color text.

@radarhere radarhere changed the title I can't use "align=center" together with "embedded_color=True" Can't use "align=center" together with "embedded_color=True" Aug 22, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants