메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
이미지 썸네일 #
Matplotlib를 사용하여 기존 이미지에서 축소판을 생성할 수 있습니다. Matplotlib 는 이미지를 읽기 위해 Pillow 를 사용 하므로 Pillow에서 지원하는 모든 형식을 지원합니다.
from argparse import ArgumentParser
from pathlib import Path
import sys
import matplotlib.image as image
parser = ArgumentParser(
description="Build thumbnails of all images in a directory.")
parser.add_argument("imagedir", type=Path)
args = parser.parse_args()
if not args.imagedir.is_dir():
sys.exit(f"Could not find input directory {args.imagedir}")
outdir = Path("thumbs")
outdir.mkdir(parents=True, exist_ok=True)
for path in args.imagedir.glob("*.png"):
outpath = outdir / path.name
fig = image.thumbnail(path, outpath, scale=0.15)
print(f"saved thumbnail of {path} to {outpath}")