# 以下、プログラム(インデントは全角スペースなので、copyしてもエラーが出ます)
#! ruby -Ku
ipath = "temp"
# convert 500x375 ----------------------------------------
opath = "px500"
fname = "r101"
upper = ipath + "/" + fname + ".JPG"
ifile = ipath + "/" + fname + ".jpg"
ofile = opath + "/" + fname + ".jpg"
File.rename(upper, ifile) if File.exist?(upper)
if File.exist?(ifile)
system("convert -geometry 500x375 " + ifile + " " + ofile)
File.delete(ifile)
else
puts "r101.jpg が有りません。中止します。"
exit
end
0 件のコメント:
コメントを投稿