我正在为 Ubuntu Touch 创建一个仅限 qml 的应用程序,并创建了一个 xmlhttprequest,其中响应是 png 格式的图像。我认为我可以将图像作为 BLOB 接收,但我现在如何仅使用 QML 显示它?我没有 C++、Python 或其他任何东西。QML 的 javascript 中没有可用的 FileReader!
Image {
id: img
anchors.fill: parent
Component.onCompleted: {
http.open( type, requestUrl, true);
http.setRequestHeader('Content-type', 'application/json; charset=utf-8')
http.timeout = defaultTimeout
http.onreadystatechange = function() {
if (http.readyState === XMLHttpRequest.DONE) {
var responseType = http.getResponseHeader("Content-Type")
if ( responseType = "image/png" ) {
var imageBlob = http.responseText
// This does not work ...
img.source = imageBlob
}
}
}
}
}