<tfoot id='MqeBL'></tfoot>
      • <bdo id='MqeBL'></bdo><ul id='MqeBL'></ul>

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

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

        使用 base64 将画布图像从一个画布显示到另一个画布

        Display canvas image from one canvas to another canvas using base64(使用 base64 将画布图像从一个画布显示到另一个画布)

        <tfoot id='vsz5v'></tfoot>

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

              <tbody id='vsz5v'></tbody>

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

                <bdo id='vsz5v'></bdo><ul id='vsz5v'></ul>

                  本文介绍了使用 base64 将画布图像从一个画布显示到另一个画布的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  例如var new = canvas.toDataURL("image/png");

                  我希望这个新变量中存在的 base64 显示到存在的第二个画布元素中.但它不使用 drawimage 方法显示 base64 图像.如果我使用说 image.png

                  I want the base64 that is present in this new variable to be displayed into 2nd canvas element that is present. But it does not display the base64 image using drawimage method. It works if I use say image.png

                  推荐答案

                  你不应该使用 base64 来复制画布.您可以将源画布传递给目标画布的上下文方法 drawImage.

                  You shouldn't use base64 to copy the canvas. You can pass the source canvas into the destination canvas' context method, drawImage.

                  否则您的性能将受到严重影响.在 http://jsperf.com/copying-a-canvas-element.

                  Otherwise you will suffer a serious performance hit. See my jsperf test at http://jsperf.com/copying-a-canvas-element.

                  drawImage() 将接受 Canvas 以及 Image 对象.

                  drawImage() will accept a Canvas as well as an Image object.

                  试试这个:

                  //grab the context from your destination canvas
                  var destCtx = destinationCanvas.getContext('2d');
                  
                  //call its drawImage() function passing it the source canvas directly
                  destCtx.drawImage(sourceCanvas, 0, 0);
                  

                  这篇关于使用 base64 将画布图像从一个画布显示到另一个画布的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Plot data in website from multiple csv file(从多个 csv 文件中绘制网站中的数据)
                  Content Service for Google Apps Script returning HTML instead of JSON(返回 HTML 而不是 JSON 的 Google Apps 脚本的内容服务)
                  Requesting blob images and transforming to base64 with fetch API(使用 fetch API 请求 blob 图像并转换为 base64)
                  Javascript Confirm popup Yes, No button instead of OK and Cancel(Javascript 确认弹出窗口是,否按钮而不是确定和取消)
                  Opensource/free HTML5/CSS3/JavaScript IDE?(开源/免费 HTML5/CSS3/JavaScript IDE?)
                  jump to CSS selector in a css file from the HTML file in Vim using a single keystroke(使用单次击键从 Vim 中的 HTML 文件跳转到 CSS 文件中的 CSS 选择器)

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

                      <legend id='nNSdL'><style id='nNSdL'><dir id='nNSdL'><q id='nNSdL'></q></dir></style></legend>

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

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

                          1. <tfoot id='nNSdL'></tfoot>