Austin McCallister

Results 4 comments of Austin McCallister

> This is because flex items do not have an explicit size. Fixe by making the .image elements flex items (eg `flex: 1`). > > Related, the .image component forces...

I solved this using masks ```py from PIL import Image, ImageFont, ImageDraw def getEmojiMask(font: ImageFont, emoji: str, size: tuple[int, int]) -> Image: """ Makes an image with an emoji using...

> I solved this using masks > > > > ```py > > from PIL import Image, ImageFont, ImageDraw > > > > def getEmojiMask(font: ImageFont, emoji: str, size: tuple[int,...

> @TheWalkingSea there are so many problems with this code, especially with the types. You mind me fixing them? It works perfectly for me and the types are correct. Let...