All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ociweb.iot.maker.image.FogExifOrientation Maven / Gradle / Ivy

Go to download

FogLight is a lightweight runtime that enables makers of all ages and skill levels to create highly performant apps for embedded devices like Raspberry Pi's.

The newest version!
package com.ociweb.iot.maker.image;

public enum FogExifOrientation {
    topLeft(1),
    topRight(2),
    bottomRight(3),
    bottomLeft(4),
    leftTop(5),
    rightTop(6),
    rightBottom(7),
    leftBottom(8);

    private int specification;

    FogExifOrientation(int specification) {
        this.specification = specification;
    }

    public int getSpecification() {
        return specification;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy