decode_qrcode_data_url
Extract text content from QR codes embedded in base64 data URLs to access encoded information quickly.
Instructions
Decode a QR code from a data URL (data:;base64,...)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imageDataUrl | Yes | Image data URL (base64) of the QR image. |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"imageDataUrl": {
"description": "Image data URL (base64) of the QR image.",
"type": "string"
}
},
"required": [
"imageDataUrl"
],
"type": "object"
}