Binary Data to Image Converter

Paste raw binary data (as hex or base64 strings) to visualize the corresponding images. Supports JSON arrays or line-separated text.

Instructions for Data Extraction

Use the following SQL query to extract image data as clickable hex strings from your database.

SELECT
    TI.page_no AS [Page_No],
    (
        SELECT SI.image_file AS [*] 
        FROM transactions.ScanImages SI 
        WHERE SI.image_id = TI.image_id 
        FOR XML PATH(''), TYPE
    ) AS [Click_This_Link_For_Full_Hex]
FROM 
    transactions.TransactionImages TI
WHERE 
    TI.transaction_id = '6b9cc057-a786-4745-9592-781e12896a17'
ORDER BY 
    TI.page_no ASC;

After running this query in your SQL client, click the XML link in the `Click_This_Link_For_Full_Hex` column. This will open the full hexadecimal string in a new tab. Copy the content from that tab and paste it into the input area above.