File size: 385 Bytes
32b542e
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import sys
from PIL import Image

import warnings

warnings.filterwarnings("ignore", "(Possibly )?corrupt EXIF data", UserWarning)

try:
    im = Image.open(sys.argv[1]).convert('RGB')
    # remove images with too small or too large size
    if (im.size[0] < 10 or im.size[1] < 10 or im.size[0] > 10000 or im.size[1] > 10000):
        raise Exception('')
except:
    print(sys.argv[1])