Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails, paperclip, uploading a photo from a rake task?

How can I upload a file with paperclip via the console or a in a rake task? I'm a little unsure how this works without a form. Has anyone dealt with this?


update

So I found this:

image = Image.new(:storage => File.open('/path/to/my/image.png', rb))

But I guess this makes my question a little simpler, say my photo was actually online (at varying domains) and I wanted to take it with paperclip and transform it and upload it to my server. Is it possible to somehow give File.open a url?

like image 311
JP Silvashy Avatar asked Feb 26 '23 19:02

JP Silvashy


1 Answers

Give this a shot.

require 'open-uri'
image = Image.new(:storage => open("http://path.to.the/image.png"))

Worked when I tried it in my terminal I just did:

require 'open-uri'
image = open("http://i.stack.imgur.com/qjKuQ.jpg")

which resulted in:

=> #<File:/var/folders/Zo/ZoJYH-A6Eg8GQ3pV0fIyhU+++TU/-Tmp-/open-uri20101117-5813-1h64t5k>
like image 194
Hugo Avatar answered Mar 03 '23 04:03

Hugo