• <small id='qJEEz'></small><noframes id='qJEEz'>

    <legend id='qJEEz'><style id='qJEEz'><dir id='qJEEz'><q id='qJEEz'></q></dir></style></legend>
      <bdo id='qJEEz'></bdo><ul id='qJEEz'></ul>

      <tfoot id='qJEEz'></tfoot>

        <i id='qJEEz'><tr id='qJEEz'><dt id='qJEEz'><q id='qJEEz'><span id='qJEEz'><b id='qJEEz'><form id='qJEEz'><ins id='qJEEz'></ins><ul id='qJEEz'></ul><sub id='qJEEz'></sub></form><legend id='qJEEz'></legend><bdo id='qJEEz'><pre id='qJEEz'><center id='qJEEz'></center></pre></bdo></b><th id='qJEEz'></th></span></q></dt></tr></i><div id='qJEEz'><tfoot id='qJEEz'></tfoot><dl id='qJEEz'><fieldset id='qJEEz'></fieldset></dl></div>

        在将 Canvas HTML 图像下载为 PNG 之前弹出甜蜜警报提示

        Sweet Alert Pop up Prompt Before Downloading Canvas HTML Image to PNG(在将 Canvas HTML 图像下载为 PNG 之前弹出甜蜜警报提示)

            <bdo id='KSavv'></bdo><ul id='KSavv'></ul>
              <tfoot id='KSavv'></tfoot>

                <small id='KSavv'></small><noframes id='KSavv'>

                <legend id='KSavv'><style id='KSavv'><dir id='KSavv'><q id='KSavv'></q></dir></style></legend>
                  <tbody id='KSavv'></tbody>
                • <i id='KSavv'><tr id='KSavv'><dt id='KSavv'><q id='KSavv'><span id='KSavv'><b id='KSavv'><form id='KSavv'><ins id='KSavv'></ins><ul id='KSavv'></ul><sub id='KSavv'></sub></form><legend id='KSavv'></legend><bdo id='KSavv'><pre id='KSavv'><center id='KSavv'></center></pre></bdo></b><th id='KSavv'></th></span></q></dt></tr></i><div id='KSavv'><tfoot id='KSavv'></tfoot><dl id='KSavv'><fieldset id='KSavv'></fieldset></dl></div>

                  本文介绍了在将 Canvas HTML 图像下载为 PNG 之前弹出甜蜜警报提示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  在我的 Canvas 绘图应用程序中,我有一个下载到 png 按钮,我想制作它,以便只有当用户在我的甜蜜警报弹出提示上单击是的保存它"时,画布上的图像才会下载.现在它仍在自动下载.谢谢您的帮助.(另外,如果有人有更好的方式通过 Javascript 下载也有帮助,它正在下载 png,但它已损坏,我无法打开它)

                  in my Canvas drawing app I have a download to png button, I want to make it so the image off the canvas only downloads when the user clicks "yes save it" on my sweet alert pop up prompt. Right now it's still downloading automatically. Thank you for your help. (also if someone had a better way to download via Javascript that would help too, it's downloading the png but it is corrupt and I can't open it)

                  $('#download').click(function(){
                      swal({
                          title: "Are you finished your creation?",  
                          text: "click yes to save",   
                          type: "warning",  
                          showCancelButton: true,   
                          confirmButtonColor: "#f8c1D9",   
                          confirmButtonText: "Yes, save it!",  
                          closeOnConfirm: true 
                      }, function (isConfirm) {      
                          if (isConfirm) {
                              swal("Saving!");
                  
                              var base64 = document.getElementById("canvas")
                                .toDataURL("image/png")
                                .replace(/^data:image/[^;]/, 'data:application/octet-stream');
                  
                              document.getElementById("download-png").href = base64
                          } else {
                  
                          }
                  
                          return false; 
                      });
                  });
                  

                  html

                  <div id="download">
                      <a href="#" id="download-png" download="image.png"><img src="./assets/imgs/tools/save.png" /></a>
                  </div>
                  

                  推荐答案

                  你应该包含 canvas-toBlob.js 和 FileSaver.js 进入您的页面,然后:

                  You should include canvas-toBlob.js and FileSaver.js into your page and then:

                  function (isConfirm) {      
                      if (isConfirm) {
                          swal("Saving!");
                  
                          var canvas = document.getElementById("canvas")
                  
                          // get the canvas as a blob
                          canvas.toBlob(function(blob){
                              // Save the file...
                              saveAs(blob, 'my-image.png')
                          }, "image/png", 0.95); // PNG at 95% quality
                      } else {
                          // user cancel
                      }
                  
                      return false; 
                  };
                  

                  这篇关于在将 Canvas HTML 图像下载为 PNG 之前弹出甜蜜警报提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  quot;Status Code:200 OK (from ServiceWorker)quot; in Chrome Network DevTools?(“状态码:200 OK(来自 ServiceWorker)在 Chrome 网络开发工具中?)
                  How to set a header for a HTTP GET request, and trigger file download?(如何为 HTTP GET 请求设置标头并触发文件下载?)
                  Adding custom HTTP headers using JavaScript(使用 JavaScript 添加自定义 HTTP 标头)
                  SQL Query DocumentDB in Azure Functions by an integer not working(通过整数在 Azure Functions 中 SQL 查询 DocumentDB 不起作用)
                  Azure Functions [JavaScript / Node.js] - HTTP call, good practices(Azure Functions [JavaScript/Node.js] - HTTP 调用,良好实践)
                  Azure Functions - Import Custom Node Module(Azure Functions - 导入自定义节点模块)
                    <tbody id='LzdZw'></tbody>
                      <legend id='LzdZw'><style id='LzdZw'><dir id='LzdZw'><q id='LzdZw'></q></dir></style></legend>
                      <i id='LzdZw'><tr id='LzdZw'><dt id='LzdZw'><q id='LzdZw'><span id='LzdZw'><b id='LzdZw'><form id='LzdZw'><ins id='LzdZw'></ins><ul id='LzdZw'></ul><sub id='LzdZw'></sub></form><legend id='LzdZw'></legend><bdo id='LzdZw'><pre id='LzdZw'><center id='LzdZw'></center></pre></bdo></b><th id='LzdZw'></th></span></q></dt></tr></i><div id='LzdZw'><tfoot id='LzdZw'></tfoot><dl id='LzdZw'><fieldset id='LzdZw'></fieldset></dl></div>

                      • <small id='LzdZw'></small><noframes id='LzdZw'>

                          <tfoot id='LzdZw'></tfoot>

                          • <bdo id='LzdZw'></bdo><ul id='LzdZw'></ul>