excel-batch-editor/tests/create_image_fixture.py
MikiVL eb82650c03 feat: 实现批量 Excel 生成(文本、图片、表格区域)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-05 13:05:23 +08:00

5 lines
166 B
Python

from PIL import Image as PILImage
img = PILImage.new("RGB", (100, 100), color=(255, 0, 0))
img.save("tests/fixtures/sample_image.png")
print("image fixture created")