0
import Image, os, sys
for filename in sys.argv[1:]:
img=Image.open(filename).crop((100,100, 200, 200))
out=file(os.path.splitext(filename)[0]+"/media/New Volume_/sruthy's files nd songs!/PROJECT/scan/mug 002.jpg", "w")
try:
img.save(out, "/media/New Volume_/sruthy's files nd songs!/PROJECT/scan/mug 002.jpg")
finally:
out.close()
錯誤爲'name:out not defined' 請幫我改正它。 。 。「name:out not defined」 - 編程錯誤
它發生什麼行號?我猜最後一個,但你仍然應該告訴我們。 – 2012-02-26 15:26:00
提到哪行號碼?這個非常重要。請指出哪個**確切的**行會引發錯誤。 – 2012-02-26 15:27:11