0

I am a novice in Ruby, and I don't know how to do it

My aim is to make a photo collage , there are several steps to do it:

  1. connect to flickr service via gem flickraw - done
  2. ask flickr for specific photos - flickr.photos.search(:tags=>ARGV) - done
  3. get ImageList from p.2 - ???
  4. process images to make a collage - ???

I would like to note, that I can get url of every image from flickr response...

knut
  • 27,320
  • 6
  • 84
  • 112

1 Answers1

0

When you have the urls of the images you can use Net::HTTP to read the images. See also How do I download a file over HTTP using Ruby? or Download a zip file through Net::HTTP

After that you can try the solution of Creating a collage from a collection of images in Ruby

Community
  • 1
  • 1
knut
  • 27,320
  • 6
  • 84
  • 112