Package-level declarations

Types

Link copied to clipboard
sealed class Image

An abstract representation of an image.

Link copied to clipboard
data class ImageDescriptor(val uri: URI, val size: ImageSize)

Generic descriptor of an Image. Provides the image URI and the calculated ImageSize.

Link copied to clipboard

Factory responsible for creating an Image from different sources.

Link copied to clipboard
data class ImageSize(@IntRange(from = 0) val width: Int, @IntRange(from = 0) val height: Int)

Represents an Image size, described by its width and height.