0

それで、私がルビーとFXrubyの初心者であるという事実でこれを前置きさせてください。URLを使って画像を取得する方法を教えてください。これは、デスクトップからそれらを削除するときに使用したコードです。

require 'rubygems'

require 'fox16'

include Fox


class Image_Viewer <FXMainWindow
  def initialize(app)
    super(app, "Image Viewer", :opts => DECOR_ALL, :width => 500, :height => 450) 
    @pic = File.open("/Users/AdamAshwal/Desktop/image.jpg", "rb")
    @pic2 = FXJPGImage.new(app, @pic.read)
    FXImageFrame.new(self, @pic2)

end 
  def create
    super
    self.show(PLACEMENT_SCREEN)
end

end


app = FXApp.new
mainwin = Image_Viewer.new(app)

app.create
app.run
4

2 に答える 2

0

ただ:

require 'open-url'

それから

@pic = open("http://website.com/imgs/image.png")    

次に、他の場合と同じように扱いますFile

于 2010-11-01T19:45:01.320 に答える
0

それは

require 'open-uri'

ではなく

require 'open-url'
于 2010-11-02T16:37:33.363 に答える