Package-level declarations

Types

Link copied to clipboard
abstract class Image

An abstract representation of an image.

Link copied to clipboard
@RestrictToExtendedFlavor(value = [ExternalScope.LIBRARY_GROUP])
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
@RestrictToExtendedFlavor(value = [ExternalScope.LIBRARY_GROUP])
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.