4

嗨,我想知道如何在 ruby​​ 中创建一个临时文件图像(png),因为 tempfile 只会为您提供一个随机文件名,但它没有扩展文件。

4

1 回答 1

6

检查文档!

  # 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"
于 2011-04-07T20:27:01.977 回答