(image)
| 45 | |
| 46 | |
| 47 | def has_minimum_image_dimensions(image): |
| 48 | width, height = get_image_dimensions(image) |
| 49 | if width >= settings.MIN_W_H and height >= settings.MIN_W_H: |
| 50 | return True |
| 51 | else: |
| 52 | return False |
| 53 | |
| 54 | |
| 55 | def save_image_as_jpg(image, outfile_path): |
nothing calls this directly
no test coverage detected