我正在尝试使用 ruby 从url读取图像,然后将其保存Tempfile
以供以后处理。
require 'open-uri'
url = 'http://upload.wikimedia.org/wikipedia/commons/8/89/Robie_House.jpg'
file = Tempfile.new(['temp','.jpg'])
stringIo = open(url)
# this is part I am confused about how to save StringIO to temp file?
file.write stringIo
这不起作用,导致temp.jpg
图像无效。不知道如何进行。
谢谢