How to Download / Save HTML Canvas as an Image or Picture using JavaScript?

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии • 3

  • @CodingAqyanoos
    @CodingAqyanoos  Месяц назад +1

    Hi everyone, I hope it was helpful...Learn how to make a multi language website in React.js in a super easy and efficient way. I found a mind-blowing method for creating multi language Apps. Watch here: ruclips.net/video/n85_prhfqrU/видео.html

  • @Katar1x
    @Katar1x 2 дня назад

    what if method toDataURL was removed from site?

    • @CodingAqyanoos
      @CodingAqyanoos  2 дня назад

      @@Katar1x then you can do it this way: const blob = new Blob(ctx.getImageData(0,0,canvas.width, canvas.height); const url_ = URL.createObjectURL(blob); then use the url for href of your link to download it.