>> data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD
so the clues are here, ys. It's an image, encoded as base 64.
So you need to get the "data" part (I'm guessing it's everything after the comma) then Base64Decode it (using StringTheory) and you have the "raw jpeg" image.
The easiest way to serve it is to give it a name, same it to disk (somewhere under the web folder) and then use that name in an image control on the form.
Cheers
bruce