only crop with 4 crop points

This commit is contained in:
j 2016-02-19 22:29:02 +05:30
parent 1ef547f885
commit 0367816257

View file

@ -225,6 +225,7 @@ class Document(models.Model):
if os.path.exists(src):
if size and page:
crop = map(int, page.split(','))
if len(crop) == 4:
path = os.path.join(folder, '%s.jpg' % ','.join(map(str, crop)))
if not os.path.exists(path):
img = Image.open(src).crop(crop)