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

    1. <small id='sPaXS'></small><noframes id='sPaXS'>

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

      1. 如何在 JavaScript 中缩放图像(数据 URI 格式)(实际缩放,不使用样式)

        How to scale an image (in data URI format) in JavaScript (real scaling, not using styling)(如何在 JavaScript 中缩放图像(数据 URI 格式)(实际缩放,不使用样式))
          • <bdo id='0eM4V'></bdo><ul id='0eM4V'></ul>
            <legend id='0eM4V'><style id='0eM4V'><dir id='0eM4V'><q id='0eM4V'></q></dir></style></legend>
              <i id='0eM4V'><tr id='0eM4V'><dt id='0eM4V'><q id='0eM4V'><span id='0eM4V'><b id='0eM4V'><form id='0eM4V'><ins id='0eM4V'></ins><ul id='0eM4V'></ul><sub id='0eM4V'></sub></form><legend id='0eM4V'></legend><bdo id='0eM4V'><pre id='0eM4V'><center id='0eM4V'></center></pre></bdo></b><th id='0eM4V'></th></span></q></dt></tr></i><div id='0eM4V'><tfoot id='0eM4V'></tfoot><dl id='0eM4V'><fieldset id='0eM4V'></fieldset></dl></div>
              <tfoot id='0eM4V'></tfoot>
                <tbody id='0eM4V'></tbody>

                • <small id='0eM4V'></small><noframes id='0eM4V'>

                  本文介绍了如何在 JavaScript 中缩放图像(数据 URI 格式)(实际缩放,不使用样式)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我们正在 Chrome 浏览器中捕获可见选项卡(通过使用扩展 API chrome.tabs.captureVisibleTab)并接收数据 URI 方案(Base64 编码字符串)中的快照.

                  We are capturing a visible tab in a Chrome browser (by using the extensions API chrome.tabs.captureVisibleTab) and receiving a snapshot in the data URI scheme (Base64 encoded string).

                  是否有 JavaScript 库可用于将图像缩小到特定大小?

                  Is there a JavaScript library that can be used to scale down an image to a certain size?

                  目前我们正在通过 CSS 对其进行样式设置,但必须支付性能损失,因为图片通常比所需的大 100 倍.另一个问题是我们用来保存快照的 localStorage 的负载.

                  Currently we are styling it via CSS, but have to pay performance penalties as pictures are mostly 100 times bigger than required. Additional concern is also the load on the localStorage we use to save our snapshots.

                  有谁知道一种方法来处理这种数据 URI 方案格式的图片并通过缩小它们来减小它们的大小?

                  Does anyone know of a way to process this data URI scheme formatted pictures and reduce their size by scaling them down?

                  参考资料:

                  • http://en.wikipedia.org/wiki/Data_URI_scheme上的数据 URI 方案
                  • http://code.google.com/chrome/extensions/上的 Chrome 扩展 APItabs.html
                  • http://code.google.com 上的最近关闭的标签"Chrome 扩展程序/p/recently-closed-tabs
                  • Data URI scheme on http://en.wikipedia.org/wiki/Data_URI_scheme
                  • Chrome Extensions API on http://code.google.com/chrome/extensions/tabs.html
                  • The "Recently Closed Tabs" Chrome Extension on http://code.google.com/p/recently-closed-tabs

                  推荐答案

                  这里有一个函数可以满足你的需要.你给它一个图像的 URL(例如,来自 chrome.tabs.captureVisibleTab 的结果,但它可以是任何 URL)、所需的大小和一个回调.它异步执行,因为无法保证在设置 src 属性时立即加载图像.使用数据 URL 可能会,因为它不需要下载任何东西,但我没有尝试过.

                  Here's a function that should do what you need. You give it the URL of an image (e.g. the result from chrome.tabs.captureVisibleTab, but it could be any URL), the desired size, and a callback. It executes asynchronously because there is no guarantee that the image will be loaded immediately when you set the src property. With a data URL it probably will since it doesn't need to download anything, but I haven't tried it.

                  回调会将结果图像作为数据 URL 传递.请注意,生成的图像将是 PNG,因为 Chrome 的 toDataURL 实现不支持 image/jpeg.

                  The callback will be passed the resulting image as a data URL. Note that the resulting image will be a PNG, since Chrome's implementation of toDataURL doesn't support image/jpeg.

                  function resizeImage(url, width, height, callback) {
                      var sourceImage = new Image();
                  
                      sourceImage.onload = function() {
                          // Create a canvas with the desired dimensions
                          var canvas = document.createElement("canvas");
                          canvas.width = width;
                          canvas.height = height;
                  
                          // Scale and draw the source image to the canvas
                          canvas.getContext("2d").drawImage(sourceImage, 0, 0, width, height);
                  
                          // Convert the canvas to a data URL in PNG format
                          callback(canvas.toDataURL());
                      }
                  
                      sourceImage.src = url;
                  }
                  

                  这篇关于如何在 JavaScript 中缩放图像(数据 URI 格式)(实际缩放,不使用样式)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
                  问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
                  Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                  CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
                  Ordinals in words javascript(javascript中的序数)
                  getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)
                    <bdo id='3UKkj'></bdo><ul id='3UKkj'></ul>
                      <tbody id='3UKkj'></tbody>

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

                          <tfoot id='3UKkj'></tfoot>

                          1. <legend id='3UKkj'><style id='3UKkj'><dir id='3UKkj'><q id='3UKkj'></q></dir></style></legend>