Sha256: f3593de6bd7464d50c106012cda0cd29c0b902149733d031b2b89968105f6e7a
Contents?: true
Size: 1.38 KB
Versions: 8
Compression:
Stored size: 1.38 KB
Contents
/*global define*/ define(['Core/defined'], function(defined) { "use strict"; var context2DsByWidthAndHeight = {}; /** * Extract a pixel array from a loaded image. Draws the image * into a canvas so it can read the pixels back. * * @exports getImagePixels * * @param {Image} image The image to extract pixels from. * * @returns {CanvasPixelArray} The pixels of the image. */ var getImagePixels = function(image, width, height) { if (!defined(width)) { width = image.width; } if (!defined(height)) { height = image.height; } var context2DsByHeight = context2DsByWidthAndHeight[width]; if (!defined(context2DsByHeight)) { context2DsByHeight = {}; context2DsByWidthAndHeight[width] = context2DsByHeight; } var context2d = context2DsByHeight[height]; if (!defined(context2d)) { var canvas = document.createElement('canvas'); canvas.width = width; canvas.height = height; context2d = canvas.getContext('2d'); context2d.globalCompositeOperation = 'copy'; context2DsByHeight[height] = context2d; } context2d.drawImage(image, 0, 0, width, height); return context2d.getImageData(0, 0, width, height).data; }; return getImagePixels; });
Version data entries
8 entries across 8 versions & 1 rubygems