matrix-org / matrix-ios-sdk

The Matrix SDK for iOS
Apache License 2.0
451 stars 211 forks source link

Send image with caption is missing. #1852

Open maulikgoyanidbc opened 4 months ago

maulikgoyanidbc commented 4 months ago

I want to send caption with image. There is no method to send caption.

var echo: MXEvent?

    room?.sendImage(data: imageData,
                    size: image.size,
                    mimeType: "image/png",
                    thumbnail: nil,
                    blurhash: nil,
                    localEcho: &echo,
                    completion: { response in
        print(response as Any)
    })

This is Matrix SDK function to sendImage.

Can anybody help me on this?