MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / _make_png_bytes

Function _make_png_bytes

tests/test_image_processor.py:35–39  ·  view source on GitHub ↗
(w: int, h: int, color: str = "red")

Source from the content-addressed store, hash-verified

33
34
35def _make_png_bytes(w: int, h: int, color: str = "red") -> bytes:
36 img = Image.new("RGB", (w, h), color=color)
37 buf = io.BytesIO()
38 img.save(buf, format="PNG")
39 return buf.getvalue()
40
41
42def _make_jpeg_bytes(w: int, h: int, color: str = "blue", quality: int = 80) -> bytes:

Calls 1

saveMethod · 0.45

Tested by

no test coverage detected