How to download a base64-encoded image?

前端 未结 10 902
无人及你
无人及你 2020-11-29 08:16

I have a base64-encoded image from the server for which I want to force the download through JavaScript. Is is possible?

10条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-29 08:51

    If you already have it in base64, add the image tag in front of the base64. attach it to the element

    png64 = "data:image/" + png64; 
    $('#downloadPNG').attr('href', png64);
    

    Add the file name that you want when downloading to the download tag.

    Export img
    

提交回复
热议问题