有没有办法“打开”GD2
上使用的远程影像?
答案 0 :(得分:1)
开放式方法是下载tmp
目录中的图像,然后使用gd2
此处如何将文件从远程位置下载到tmp
require "rubygems"
### Method 1
require "net/http"
require "uri"
uri = URI.parse("image path")
http = Net::HTTP.new(uri.host, uri.port)
File.open("/tmp/a_#{Date.now}.png", "wb+") do |file|
file.write http.get(uri.path)
end
### Method 2
require "open-uri"
File.open("/tmp/a_#{Date.now}.png", "wb+") do |file|
file.write open("image path").read
end
确保用户具有在tmp
目录