QUESTION
How to read or convert a base64 image string with Microsoft Access vba?
REQUIREMENTS
A base64 image string is stored in a ms sqlserver database as below:
BASE64
data:image/png;base64,iVBORw0KGgoAAAA...
Using vba I am attempting to read the string from the database using microsoft vba.
I know vba is capable of reading a string from the database to output the image on screen as I currently achieve this result by reading the image as a hex sting as below:
HEX
89504E470D0A1A0A0000000D49484...
So how can vba read a base64 image string to display the image on screen within Microsoft Access?