ResourceBuilders.InlineImageResource

Added in 1.0.0
Deprecated in 1.2.0

public final class ResourceBuilders.InlineImageResource


An image resource whose data is fully inlined, with no dependency on a system or app resource.

Summary

Nested types

Builder for InlineImageResource

Public methods

@NonNull byte[]

Gets the byte array representing the image.

int

Gets the format of the byte array data representing the image.

@Dimension(unit = 1) int

Gets the native height of the image, in pixels.

@Dimension(unit = 1) int

Gets the native width of the image, in pixels.

Public methods

getData

Added in 1.0.0
Deprecated in 1.2.0
public @NonNull byte[] getData()

Gets the byte array representing the image. Intended for testing purposes only.

getFormat

Added in 1.0.0
Deprecated in 1.2.0
public int getFormat()

Gets the format of the byte array data representing the image. May be left unspecified or set to IMAGE_FORMAT_UNDEFINED in which case the platform will attempt to extract this from the raw image data. If the platform does not support the format, the image will not be decoded or displayed. Intended for testing purposes only.

getHeightPx

Added in 1.0.0
Deprecated in 1.2.0
public @Dimension(unit = 1) int getHeightPx()

Gets the native height of the image, in pixels. Only required for formats (e.g. IMAGE_FORMAT_RGB_565) where the image data does not include size. Intended for testing purposes only.

getWidthPx

Added in 1.0.0
Deprecated in 1.2.0
public @Dimension(unit = 1) int getWidthPx()

Gets the native width of the image, in pixels. Only required for formats (e.g. IMAGE_FORMAT_RGB_565) where the image data does not include size. Intended for testing purposes only.