SimpleOfflineResourceImage

@SerialName(value = "m.std.img.offline.resource")
data class SimpleOfflineResourceImage(val resource: Resource) : OfflineResourceImage(source)

最基础的、基于 Resource 实现的 OfflineResourceImage

如果不是明确要使用 SimpleOfflineResourceImage, 那么更建议使用 OfflineImage.toOfflineImage 构建 OfflineImage 对象。

序列化

序列化中 resource 会使用基于 Base64 实现的 ResourceBase64Serializer 来作为其序列化器。 请谨慎使用,频繁地将具有一定尺寸的 bytes 数据进行 base64 编码或解码可能会存在一定的性能损耗。

Constructors

Link copied to clipboard
constructor(resource: Resource)

Properties

Link copied to clipboard

关联的资源对象

Inherited functions

Link copied to clipboard
open override fun data(): ByteArray

字节数据。默认通过 Resource.data 获取。

Link copied to clipboard
operator fun Message.plus(other: Message): Messages

合并两个 MessageMessages