How to export base64 to a file?

I am currently trying to decode an attachment of an image from my base64 e-mail (jpg) to unicode, and then export it to a file (so that I can return the image from raw data).

Now I have data decoded from base64 to Unicode, but how can I convert Unicode back to an image?

Hope you can help!

+5
source share
2 answers

You do not need to convert it to Unicode.

In the Linux box, you can simply save the base64-encoded disk attachment and do:

cat foo | base64 -d > bar.jpg

For windows, you can download this tool:

http://www.f2ko.de/downloads/base64.zip

+12
source

, spesial -, Base64online.org/decode. base64 .

0

All Articles