Package | com.adobe.webapis.flickr.methodgroups |
Class | public class Transform |
Method | Defined by | ||
---|---|---|---|
Transform(service:FlickrService)
Construct a new Transform "method group" class
| Transform | ||
rotate(photo_id:String, degrees:Number):void
Rotate a photo.
| Transform |
Event | Summary | Defined by | ||
---|---|---|---|---|
Broadcast as a result of the rotate method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, an empty object When success is false, contains an "error" FlickrError instance | Transform |
Transform | () | constructor |
public function Transform(service:FlickrService)
Construct a new Transform "method group" class
Parametersservice:FlickrService — The FlickrService this method group
is associated with.
|
rotate | () | method |
public function rotate(photo_id:String, degrees:Number):void
Rotate a photo. This method requires authentication with WRITE permission.
Parametersphoto_id:String — The id of the photo to rotate.
|
|
degrees:Number — The amount of degrees by which to rotate the photo (clockwise)
from it's current orientation. Valid values are 90, 180 and 270.
|
See also
photosTransformRotate | event |
com.adobe.webapis.flickr.events.FlickrResultEvent
Broadcast as a result of the rotate method being called The event contains the following properties success - Boolean indicating if the call was successful or not data - When success is true, an empty object When success is false, contains an "error" FlickrError instance
See also