Transform tool allows flipping and vertical/horizontal rotation/skewing of photo.
var pixie = new Pixie({
onLoad: function() {
var transformTool = pixie.getTool('transform');
transformTool.rotate('basic', 90, 'left');
}
});

Transform tool methods
flip
-
Parameters
-
direction: "horizontal" | "vertical"
Returns void
-
rotate
-
Rotate or skew the canvas. When type is basic, angle should be in 90 degree intervals.
Parameters
-
type: "basic" | "skew"
-
angle: number
-
Optional direction: "left" | "right"
Returns void
-
Flip canvas vertically or horizontally.