Hi folks,
I am trying to display a JPEG from raw data that is base64 encoded.
The raw data is generated on a remote server and I put it into a variable
$raw_image=image data dump coming from remote server
I then decode it with:
$actual_label = base64_decode ($raw_image);
What now? How do I make it actually appear on the browser?
Thanks,
Boaz