chiark / gitweb /
gremlin/gremlin.in: Use `https' scheme for Wikipedia link.
[autoys] / coverart / chkimgsz
CommitLineData
583b7e4a
MW
1#! /usr/bin/python
2
3from PIL import Image as I
4from sys import argv, stdin
5
6minx, miny = map(int, argv[1:])
7
8for line in stdin:
9 if line and line[-1] == '\n': line = line[:-1]
10 x, y = I.open(line).size
11 if x < minx or y < miny: print '%s (%dx%d)' % (line, x, y)