从 bot 框架访问上传到 Azure blob 的图像
Accessing images uploaded to Azure blob from bot framework
我已经使用 AttachmentPrompt 从 Azure 机器人上传了一张 .png
图片,图片存储在 http://localhost:52225/v3/attachments/7e46c370-2f09-11eb-8de3-8bfedba8e1e0/views/original
。图片未存储为 .png
,但没有任何扩展名。如何访问这个文件?我需要将此文件传递给 OCR 读取端点。
如果您要使用本地存储的图像调用 this API,您只需使用 HTTP 请求 header 将此图像的二进制数据上传到 OCR READ API
: Content-Type:application/octet-stream
。
就像下面:
如果您需要更多帮助,请告诉我。
我已经使用 AttachmentPrompt 从 Azure 机器人上传了一张 .png
图片,图片存储在 http://localhost:52225/v3/attachments/7e46c370-2f09-11eb-8de3-8bfedba8e1e0/views/original
。图片未存储为 .png
,但没有任何扩展名。如何访问这个文件?我需要将此文件传递给 OCR 读取端点。
如果您要使用本地存储的图像调用 this API,您只需使用 HTTP 请求 header 将此图像的二进制数据上传到 OCR READ API
: Content-Type:application/octet-stream
。
就像下面:
如果您需要更多帮助,请告诉我。