3
您好我想知道如何在ruby中創建一個臨時文件映像(png),因爲tempfile只會爲您提供一個隨機文件名,但它沒有擴展名文件。ruby中的臨時圖像文件
您好我想知道如何在ruby中創建一個臨時文件映像(png),因爲tempfile只會爲您提供一個隨機文件名,但它沒有擴展名文件。ruby中的臨時圖像文件
# Use the Array form to enforce an extension in the filename:
file = Tempfile.new(['hello', '.jpg'])
file.path # => something like: "/tmp/foo2843-8392-92849382--0.jpg"