[Resolved] display.loadRemoteImage and isFullResolution

So, the function display.newImage has the parameter “isFullResolution”, but the function display.loadRemoteImage does not. Is there any way to enable that outside of the display.newImage function? From my experience it doesn’t seem to work just setting the property to true after it has been loaded in.

Thoughts? [import]uid: 143007 topic_id: 26716 reply_id: 326716[/import]

No, you can’t alter the resolution when you use display.loadRemoteImage.

What you can do is specify a destFilename to save the file and after the download, remove the display object (opened from the download) and then load the downloaded file with display.newImage.

This would be similar to using network.request to download the image and write it out to a file. [import]uid: 7559 topic_id: 26716 reply_id: 108387[/import]

Thanks for the response, this is what I ended up doing. [import]uid: 143007 topic_id: 26716 reply_id: 108404[/import]