2010-10-30 62 views
3

您好我想知道如何在ruby中創建一個臨時文件映像(png),因爲tempfile只會爲您提供一個隨機文件名,但它沒有擴展名文件。ruby​​中的臨時圖像文件

回答

4

check the documentation!

# 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"