Documentation home page

CFlickr.photos.notes
Component NotesInterface

AbstractInterface
  |
  +--photos.notes.NotesInterface

Method Summary
public numeric Add(string photo_id, numeric note_x, numeric note_y, numeric note_w, numeric note_h, string note_text)
Add a note to a photo. Coordinates and sizes are in pixels, based on the 500px image size shown on individual photo pages.
public boolean Delete(string note_id)
Delete a note from a photo.
public boolean Edit(string note_id, numeric note_x, numeric note_y, numeric note_w, numeric note_h, string note_text)
Edit a note on a photo. Coordinates and sizes are in pixels, based on the 500px image size shown on individual photo pages.

Methods inherited from AbstractInterface
init
 

Method Detail

Add

public numeric Add(string photo_id, numeric note_x, numeric note_y, numeric note_w, numeric note_h, string note_text)
Add a note to a photo. Coordinates and sizes are in pixels, based on the 500px image size shown on individual photo pages.

Parameters:
string photo_id (Required) - The id of the photo to add a note to.
numeric note_x (Required) - The left coordinate of the note.
numeric note_y (Required) - The top coordinate of the note.
numeric note_w (Required) - The width of the note.
numeric note_h (Required) - The height of the note.
string note_text (Required) - The description of the note.

Delete

public boolean Delete(string note_id)
Delete a note from a photo.

Parameters:
string note_id (Required) - The id of the note to delete.

Edit

public boolean Edit(string note_id, numeric note_x, numeric note_y, numeric note_w, numeric note_h, string note_text)
Edit a note on a photo. Coordinates and sizes are in pixels, based on the 500px image size shown on individual photo pages.

Parameters:
string note_id (Required) - The id of the note to edit.
numeric note_x (Required) - The left coordinate of the note.
numeric note_y (Required) - The top coordinate of the note.
numeric note_w (Required) - The width of the note.
numeric note_h (Required) - The height of the note.
string note_text (Required) - The description of the note.