0
我正在使用Azure OCR服務獲取圖像的文本(https://docs.microsoft.com/de-de/azure/cognitive-services/Computer-vision/quickstarts/javascript#OCR)。Node.js Azure OCR - 使用本地文件(blob)
到目前爲止,一切都已啓動並正在運行,但現在我想使用本地文件而不是已經上傳的文件。
// Display the image.
var sourceImageUrl = document.getElementById("inputImage").value;
document.querySelector("#sourceImage").src = sourceImageUrl;
// Perform the REST API call.
$.ajax({
url: uriBase + "?" + $.param(params),
// Request headers.
beforeSend: function(jqXHR){
jqXHR.setRequestHeader("Content-Type","application/json");
jqXHR.setRequestHeader("Ocp-Apim-Subscription-Key", subscriptionKey);
},
type: "POST",
// Request body.
data: '{"url": ' + '"' + sourceImageUrl + '"}',
})
.done(function(data) {
// Show formatted JSON on webpage.
$("#responseTextArea").val(JSON.stringify(data, null, 2));
})
我試圖
不知道你在問什麼。 '本地文件'是什麼意思? Blob存儲不是本地的,也不是文件存儲。您是否在詢問有關將內容複製到VM/Web應用程序的問題?請編輯澄清。 –