Skip to main content

Orient

The orient parameter controls the cardinal orientation of the image.

NOTE:

  • By default, if the source image contains orientation information stored within its metadata, that orientation will be applied to the image data and the orientation override removed from metadata.
  • The numerical values are the same as EXIF rotation numbers.
enum Orient {
RIGHT
LEFT
HORIZONTAL_FLIP
VERTICAL_FLIP
HV_FLIP
ONE
TWO
THREE
FOUR
FIVE
SIX
SEVEN
EIGHT
}

Values

Orient.RIGHT

Orient the image right.

Orient.LEFT

Orient the image left.

Orient.HORIZONTAL_FLIP

Flip the image horizontally.

Orient.VERTICAL_FLIP

Flip the image horizontally.

Orient.HV_FLIP

Flip the image both horizontally and vertically (also vh).

Orient.ONE

Default - don't do anything...

Orient.TWO

Flip the image horizontally.

Orient.THREE

Flip the image horizontally and vertically.

Orient.FOUR

Flip the image vertically.

Orient.FIVE

Flip the image horizontally, then orient the image left (also rv or vr).

Orient.SIX

Orient the image right.

Orient.SEVEN

Flip the image horizontally, then orient the image right (also lv or vl).

Orient.EIGHT

Orient the image left.

Member Of

TransformationInput input