何か本当のことをする最初の本当のpython関数を書こうとしています。私が達成したいのは、特定のフォルダーを検索し、すべての画像を開いてそれらをマージして、フィルムストリップ画像を作成することです。5 つの画像が 1 つの画像に重なり合っていると想像してください。
私は今このコードを持っています。これはほとんど問題ないはずですが、おそらくいくつかの変更が必要です:
import os
import Image
def filmstripOfImages():
imgpath = '/path/here/'
files = glob.glob(imgpath + '*.jpg')
imgwidth = files[0].size[0]
imgheight = files[0].size[1]
totalheight = imgheight * len(files)
filename = 'filmstrip.jpg'
filmstrip_url = imgpath + filename
# Create the new image. The background doesn't have to be white
white = (255,255,255)
filmtripimage = Image.new('RGB',(imgwidth, totalheight),white)
row = 0
for file in files:
img = Image.open(file)
left = 0
right = left + imgwidth
upper = row*imgheight
lower = upper + imgheight
box = (left,upper,right,lower)
row += 1
filmstripimage.paste(img, box)
try:
filmstripimage.save(filename, 'jpg', quality=90, optimize=1)
except:
filmstripimage.save(miniature_filename, 'jpg', quality=90)")
画像をロードしたのと同じディレクトリに新しいfilmstrip.jpgを保存するようにこれを変更するにはどうすればよいですか? そして、おそらく、欠けているものや間違っているものがあるでしょう。