cmd/grayscale.py
Ethan Dalool 4a9051e617
Big migrations and linting.
With pathclass.glob_many, we can clean up and feel more confident
about many programs that use pipeable to take glob patterns.

Added return 0 to all programs that didn't have it, so we have
consistent and explicit command line return values.

Other linting and whitespace.
2021-09-23 23:42:45 -07:00

47 lines
1.4 KiB
Python

import argparse
import PIL.Image
import sys
from voussoirkit import pathclass
from voussoirkit import pipeable
def grayscale(filename, *, inplace=False):
filename = pathclass.Path(filename)
basename = filename.replace_extension('').basename
if basename.endswith('_gray'):
return
if inplace:
new_filename = filename
else:
basename += '_gray'
new_filename = filename.parent.with_child(basename).add_extension(filename.extension)
image = PIL.Image.open(filename.absolute_path)
image = image.convert('LA').convert(image.mode)
image.save(new_filename.absolute_path, exif=image.info.get('exif', b''))
return new_filename
def grayscale_argparse(args):
patterns = pipeable.input_many(args.patterns, skip_blank=True, strip=True)
files = pathclass.glob_many(patterns, files=True)
for file in files:
new_filename = grayscale(file, inplace=args.inplace)
if new_filename:
pipeable.stdout(new_filename.absolute_path)
return 0
def main(argv):
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument('patterns', nargs='+')
parser.add_argument('--inplace', action='store_true')
parser.set_defaults(func=grayscale_argparse)
args = parser.parse_args(argv)
return args.func(args)
if __name__ == '__main__':
raise SystemExit(main(sys.argv[1:]))