(w: int, h: int, bg: str = "bg")
| 14 | |
| 15 | |
| 16 | def get_waves_bg(w: int, h: int, bg: str = "bg") -> Image.Image: |
| 17 | img = Image.open(TEXT_PATH / f"{bg}.jpg").convert("RGBA") |
| 18 | return crop_center_img(img, w, h) |
| 19 | |
| 20 | |
| 21 | def get_crop_waves_bg(w: int, h: int, bg: str = "bg") -> Image.Image: |
nothing calls this directly
no outgoing calls
no test coverage detected