(width=256, height=256)
| 26 | # ── 辅助 ────────────────────────────────────────────────────────────── |
| 27 | |
| 28 | def _cover_bytes(width=256, height=256) -> bytes: |
| 29 | buf = io.BytesIO() |
| 30 | Image.open(IMG_PATH).resize((width, height)).save(buf, "PNG") |
| 31 | return buf.getvalue() |
| 32 | |
| 33 | |
| 34 | def _make_stegapy(plugin, cfg): |
no outgoing calls
no test coverage detected