Initial benchmarks

This commit is contained in:
Vik Paruchuri
2025-10-20 15:11:12 -04:00
parent 313f9c71b8
commit 98989faae4
16 changed files with 860 additions and 76 deletions

10
tests/conftest.py Normal file
View File

@@ -0,0 +1,10 @@
import pytest
from PIL import Image, ImageDraw
@pytest.fixture(scope="session")
def simple_text_image() -> Image.Image:
image = Image.new("RGB", (800, 600), "white")
draw = ImageDraw.Draw(image)
draw.text((50, 50), "Hello, World!", fill="black", font_size=32)
return image