cmd/crop.py

60 lines
1.8 KiB
Python
Raw Normal View History

2020-07-08 05:10:21 +00:00
import argparse
import PIL.Image
2020-07-08 05:10:21 +00:00
import sys
from voussoirkit import pathclass
from voussoirkit import pipeable
2020-07-08 05:10:21 +00:00
def crop(file, crops, *, inplace=False, quality=100):
image = PIL.Image.open(file.absolute_path)
2023-03-19 18:21:33 +00:00
icc_profile = image.info.get('icc_profile')
2020-07-08 05:10:21 +00:00
if len(crops) == 2:
crops.extend(image.size)
if crops[0] < 0: crops[0] = image.size[0] + crops[0]
if crops[1] < 0: crops[1] = image.size[1] + crops[1]
if crops[2] < 0: crops[2] = image.size[0] + crops[2]
if crops[3] < 0: crops[3] = image.size[1] + crops[3]
if crops[2] == 0: crops[2] = image.size[0]
if crops[3] == 0: crops[3] = image.size[1]
image = image.crop(crops)
2020-07-08 05:10:21 +00:00
if inplace:
newname = file
2020-07-08 05:10:21 +00:00
else:
suffix = '_'.join(str(x) for x in crops)
suffix = f'_{suffix}'
base = file.replace_extension('').basename
newname = file.parent.with_child(base + suffix).add_extension(file.extension)
2020-07-08 05:10:21 +00:00
pipeable.stdout(newname.absolute_path)
2023-03-19 18:21:33 +00:00
image.save(newname.absolute_path, exif=image.getexif(), quality=quality, icc_profile=icc_profile)
2020-07-08 05:10:21 +00:00
def crop_argparse(args):
patterns = pipeable.input(args.pattern, skip_blank=True, strip=True)
files = pathclass.glob_many_files(patterns)
for file in files:
2020-07-08 05:10:21 +00:00
crop(
file,
2020-07-08 05:10:21 +00:00
crops=args.crops,
inplace=args.inplace,
quality=args.quality,
2020-07-08 05:10:21 +00:00
)
return 0
2020-07-08 05:10:21 +00:00
def main(argv):
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument('pattern')
parser.add_argument('crops', nargs='+', type=int, default=None)
parser.add_argument('--inplace', action='store_true')
parser.add_argument('--quality', type=int, default=100)
2020-07-08 05:10:21 +00:00
parser.set_defaults(func=crop_argparse)
args = parser.parse_args(argv)
return args.func(args)
2019-06-12 05:41:31 +00:00
2020-07-08 05:10:21 +00:00
if __name__ == '__main__':
raise SystemExit(main(sys.argv[1:]))