2020-12-19から1日間の記事一覧

JPEGをPDFにまとめる 複数冊対応

2022/5/3更新 #!/usr/bin/python #-*- coding:utf-8 -*- import os import pdb current_dir = os.getcwd() booknames = [f for f in os.listdir(current_dir) if not os.path.isfile(f)] #QUALITY = 100 QUALITY = 92 # ビルドフォルダを作成(すでにあれば…