我正在尝试使用 boto3 来运行 textract detect_document_text 请求。
我正在使用以下代码:
client = boto3.client('textract')
response = client.detect_document_text(
Document={
'Bytes': image_b64['document_b64']
}
)
其中 image_b64['document_b64'] 是我转换的 base64 图像代码,例如https://base64.guru/converter/encode/image网站。
但我收到以下错误:
UnsupportedDocumentException
我做错了什么?