👁️🗨️
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs on Python 3.8 + Pillow | |
# Should run also on Python 3.7+ | |
from pathlib import Path | |
from PIL import Image, ImageOps, ImageFilter | |
def main(): | |
Path('./stroked').mkdir(exist_ok=True) |