pythonの環境がないPCでプログラムを動かしたいです。
フォルダから画像を取り込み、リサイズ、リネームして別のフォルダに保存するプログラムを作っています。
スクリプトファイルを実行すれば意図通り動くのですが、PyInstallerで実行ファイルにするとうまく動きません。
デバッグの方法もわからず困っています。どうやってエラーの原因を突き止めれば良いのでしょうか。ご教授お願いいたします、
Python
1import os 2import glob 3from PIL import Image 4 5#横を指定pxに変更、アスペクト比固定で拡大縮小(iwidth < iheight & | iheight < iwidth=600 & 横長) 6def resize_hor(w, iw, ih, name, ex): 7 resize_image = img.resize((w, int(w * ih / iw))) 8 re_imgpath = os.path.join('./re_image', name + "_N" + ex) 9 resize_image.save(re_imgpath) 10 11#縦を指定pxに変更、アスペクト比固定で拡大縮小(iheight < iwidth & | iwidth < iheight=600 & 縦長) 12def resize_ver(h, iw, ih, name, ex): 13 w = int( h * iw / ih) 14 resize_image = img.resize((w, h)) 15 re_imgpath = os.path.join('./re_image', name + "_N" + ex) 16 resize_image.save(re_imgpath) 17#--------------------------------------------------------------------------------------------------- 18 19files = glob.glob('image/*') 20 21width = 600 #変更後横サイズを指定 22height = 600 #変更後縦サイズを指定 23 24for f in files: 25 title, ext = os.path.splitext(f) 26 title = os.path.basename(f).split('.', 1)[0] 27 if ext in ['.jpg']: 28 img = Image.open(f) 29 iwidth,iheight = img.size #画像サイズを取得 30 if iwidth >= iheight : 31 resize_ver(width, iwidth, iheight, title, ext) 32 else : 33 resize_hor(height, iwidth, iheight, title, ext) 34
---補足情報
Python 3.6.10
macOS catalina 10.15.4
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/08 10:13