(img, bits_to_keep, **__)
| 142 | |
| 143 | |
| 144 | def posterize(img, bits_to_keep, **__): |
| 145 | if bits_to_keep >= 8: |
| 146 | return img |
| 147 | return ImageOps.posterize(img, bits_to_keep) |
| 148 | |
| 149 | |
| 150 | def contrast(img, factor, **__): |
nothing calls this directly
no outgoing calls
no test coverage detected