可将一串Base64字符串解码成相应格式的图片(png、jpg、gif、bmp等),并提供下载。
图片
Base64格式:data:[][;charset=][;base64].
css格式:.demoImg{ background-image: url("data:image/jpg;base64,/9j/4QMZRXhpZgAASUkqAAgAAAAL...."); }
html格式:<img width="40" height="30" src="data:image/jpg;base64,/9j/4QMZRXhpZgAASUkqAAgAAAAL...." />