decode_qrcode_image_url
Extract text content from QR codes by providing an HTTP(S) image URL. Converts QR code images into readable text with support for common image formats.
Instructions
Decode a QR code from an HTTP(S) image URL
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imageUrl | Yes | HTTP(S) URL to the QR image. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"imageUrl": {
"description": "HTTP(S) URL to the QR image.",
"type": "string"
}
},
"required": [
"imageUrl"
],
"type": "object"
}