diff options
Diffstat (limited to 'crop-thirds.py')
| -rw-r--r-- | crop-thirds.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crop-thirds.py b/crop-thirds.py index 996ce54..fddba9d 100644 --- a/crop-thirds.py +++ b/crop-thirds.py @@ -59,7 +59,7 @@ for i in range(opt.count): x = src_width - (crop_width + x_margin + x_margin) if x < 0: x = 0 - crops.append((x, y0, w, y0 + crop_height + margin + margin,)) + crops.append((x, y0, w, y0 + crop_height + y_margin + y_margin,)) path = os.path.join(out_path, chr(97 + i)) os.makedirs(path) paths.append(path) |
