How to set image received from a web service as ImagePaint in Blackberry 10.1?

98 Views Asked by At

I am populating a QVariantMap with JSON data which I'm getting from a web service. This data contains, among other things, URL for images. Now I want to use these images as ImagePaint in my qml file, but in Blackberry OS 10.1, setting the imageSource to the URL doesn't load the image.

What is the way around this problem? Thanks.

1

There are 1 best solutions below

0
On

You can use a WebView to display your image like the following:

Webview {
    url: "link/to/your/image"
}