net.dankito.utils.image.IImageUtils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-utils Show documentation
Show all versions of java-utils Show documentation
Some basic utils needed in many projects
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
}