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

net.dankito.utils.image.IImageUtils.kt Maven / Gradle / Ivy

The newest version!
package net.dankito.utils.image

import java.io.File
import java.io.IOException


interface IImageUtils {

    @Throws(IOException::class)
    fun getImageOrientationInDegree(imagePath: String): Int

    @Throws(IOException::class)
    fun getImageOrientationInDegree(imagePath: File): Int

    @Throws(IOException::class)
    fun getImageOrientation(imagePath: String): ImageOrientation

    @Throws(IOException::class)
    fun getImageOrientation(imagePath: File): ImageOrientation

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy