Don't crop if cmd arg is chunks.
This commit is contained in:
parent
307c88cd50
commit
cb9d119482
1 changed files with 1 additions and 1 deletions
|
@ -511,7 +511,7 @@ def render_argparse(args):
|
|||
scale = float(args.scale)
|
||||
image = chunks_to_image(chunks, scale=scale)
|
||||
|
||||
if scale == 1:
|
||||
if scale == 1 and not args.is_chunks:
|
||||
image = crop_image(image, *coordinates)
|
||||
|
||||
if args.do_show:
|
||||
|
|
Loading…
Reference in a new issue