Package com.google.appengine.api.images
Class InputSettings
- java.lang.Object
-
- com.google.appengine.api.images.InputSettings
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInputSettings.OrientationCorrectionActions to take with respect to correcting image orientation based on image metadata.
-
Constructor Summary
Constructors Constructor Description InputSettings()Create an InputSettings with default orientation correction ofInputSettings.OrientationCorrection.UNCHANGED_ORIENTATION.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InputSettings.OrientationCorrectiongetOrientationCorrection()Get what action to take with respect to correcting image orientation based on image metadata.voidsetOrientationCorrection(InputSettings.OrientationCorrection orientationCorrection)Set what action to take with respect to correcting image orientation based on image metadata.
-
-
-
Constructor Detail
-
InputSettings
public InputSettings()
Create an InputSettings with default orientation correction ofInputSettings.OrientationCorrection.UNCHANGED_ORIENTATION.
-
-
Method Detail
-
setOrientationCorrection
public void setOrientationCorrection(InputSettings.OrientationCorrection orientationCorrection)
Set what action to take with respect to correcting image orientation based on image metadata.- Parameters:
orientationCorrection- what should be done to correct orientation
-
getOrientationCorrection
public InputSettings.OrientationCorrection getOrientationCorrection()
Get what action to take with respect to correcting image orientation based on image metadata.- Returns:
- what should be done to correct orientation
-
-