OverlayAlign
public enum OverlayAlign : String
The overlay-align
parameter lets you define the position of the overlay image.
See Overlay Align
-
Align the overlay image to the top of the actual image.
Declaration
Swift
case top
-
Align the overlay image to the bottom of the actual image.
Declaration
Swift
case bottom
-
Align the overlay image to the left of the actual image.
Declaration
Swift
case left
-
Align the overlay image to the right of the actual image.
Declaration
Swift
case right
-
Align the overlay image to the middle (vertically) of the actual image.
Declaration
Swift
case middel
-
Align the overlay image to the center (horizontally) of the actual image.
Declaration
Swift
case center
-
Align the overlay image to the top-left of the actual image.
Declaration
Swift
case topLeft = "top,left"
-
Align the overlay image to the top-right of the actual image.
Declaration
Swift
case topRight = "top,right"
-
Align the overlay image to the bottom-left of the actual image.
Declaration
Swift
case bottomLeft = "bottom,left"
-
Align the overlay image to the bottom-right of the actual image.
Declaration
Swift
case bottomRight = "bottom,right"