samedi 20 avril 2019

I tried download and save image with html. How can i download and save as image?

This is snippet of my html code where i tried to download and save image

<body>
  <script>
    var img = document.createElement('img');
    var a = document.createElement('a');
    a.href = image_url;
    a.download = image_url;
    a.appendChild(img);
    document.body.appendChild(a);
    var imageCellspace = document.createElement('br');
    document.body.appendChild(imageCellspace);
  </script>

  <a href=image_url download>download</a>
</body>



Aucun commentaire:

Enregistrer un commentaire