ImageSize

data class ImageSize(val width: Int?, val height: Int?)

用于图片转换器得传参类型 记录图片被设置显示的大小 如果值为null则表示未指定该方向的大小

Since

Api 4

Parameters

width

图片宽度

height

图片高度

Constructors

Link copied to clipboard
constructor(width: Int?, height: Int?)

Properties

Link copied to clipboard
val height: Int?
Link copied to clipboard
val width: Int?