# File lib/flickr/notes.rb, line 4 def add(photo,x,y,w,h,text) photo = photo.id if photo.class == Flickr::Photo res = @flickr.call_method('flickr.photos.notes.add', 'photo_id' => photo, 'note_x' => x, 'note_y' => y, 'note_w' => w, 'note_h' => h, 'note_text' => text) return res.elements['/note'].attributes['id'] end