Tagged Questions
The getimagedata tag has no wiki summary.
5
votes
1answer
254 views
javascript memory leak with HTML5 getImageData
I've been working on trying to make some visual effects for a javascript game I'm creating, and I noticed a piece of code that I'm using to modulate the color of my sprites makes my browsers memory ...
5
votes
2answers
1k views
HTML5 canvas image caching/putImageData questions
I'm using the HTML5 canvas to load a single instance of an image which I then blit multiple times onto a single canvas. The image needs some slight pixel-based manipulation in order to customise it. ...
4
votes
1answer
894 views
Is there a way to get pixel data from Internet Explorer?
Excanvas.js allows IE to work with the canvas tag, but the getImageData method is not supported.
Is there any way at all to get the value of a specified pixel in IE (img or VML or whatever other ways ...
3
votes
2answers
4k views
SECURITY_ERR: DOM Exception 18 on using getImageData in a Chrome Extension
I'm writing my first Chrome extension. I'm trying to use jQuery and the jQuery Image Desaturate plugin to desaturate an image on a page on http://www.flickr.com.
I'm loading my script (and jQuery and ...
3
votes
2answers
5k views
Javascript getImageData for canvas html5
I've tearing my hair out! I got this working, thought 'i can afford not to save a version of this', then i .. broke the 'build'.
The line myImageData = context.getImageData(0, 0, canvas.width, ...
2
votes
1answer
454 views
Textures not loading in webgl. reading and manipulating from 2D canvas, storing in Array
I'm trying (newbie) to build an application in webgl. I've come to the point where I want to load an array of images, and do some pixel manipulations on it. I'm trying to get the first pixel-column of ...
2
votes
1answer
679 views
How to scale an imageData in HTML canvas?
I have a canvas in my webpage; I create a new Image data in this canvas then I modify some pixel through myImgData.data[] array. Now I would like to scale this image and make it bigger. I tried by ...
1
vote
1answer
137 views
Horrible Canvas GetImageData() / PutImageData() performance on mobile
I'm doing a little HTML5 game and, while loading my sprites at the beginning of the map, I do some processing with GetImageData() / looping over all the image / PutImageData().
This works ...
1
vote
1answer
193 views
Displaying dynamically generated images in a JSP document
Though my question seems to be a repetition, I would like to get a clear solution for this.
I am generating charts (of type .jpg or .png) using Jfreecharts in one jsp document (storing under ...
1
vote
1answer
226 views
Canvas PutImageData color loss with no/low alpha
There's a 3x3 image. The CanvasPixelArray is:
[12,24,48,255,12,24,48,255,12,24,48,255,12,24,48,255,12,24,48,255,12,24,48,255,12,24,48,255,12,24,48,255,12,24,48,255]
I change the alpha of all ...
1
vote
2answers
256 views
getImageData always returning 0
I have been trying to make a script that compares two images in HTML5 and Javascript. But for some odd reason, it always returns that the images are completely the same.
And when looking at what the ...
1
vote
2answers
644 views
What is leaking memory with this use of getImageData, javascript, HTML5 canvas
I am working with the 'canvas' element, and trying to do some pixel based manipulations of images with Javascript in FIrefox 4.
The following code leaks memory, and i wondered if anyone could help ...
1
vote
1answer
876 views
HTML5 Canvas flip vertical function works in Firefox but not Chrome or Safari. why?
Here is the code that works perfectly well in Firefox, but I just do not get why it does not work in Webkit browsers! Note: Im using jQuery to select the canvas element.
(function()
{
...
1
vote
4answers
2k views
possible to use html images like canvas with getImageData / putImageData?
I'd like to know if there is a way to dynamically modify/access the data contained in html images just as if they were an html5 canvas element. With canvas, you can in javascript access the raw pixel ...
1
vote
3answers
5k views
getImageData in Firefox 3 causing NS_ERROR_DOM_SECURITY_ERR
I'm trying to develop an application that will use getImageData in javascript in Firefox 3, but I am getting a "NS_ERROR_DOM_SECURITY_ERR" on the getImageData call. The javascript and the image are ...
0
votes
0answers
9 views
getImageData is not working IE-7+
I am using the canvas tag to draw images. For compatibility with IE7+, I am using excanvas.js. However, it does not support the getImageData function.
Are there any other plugins which help me avoid ...
0
votes
0answers
12 views
context.getImageData strangeness in IE9
I'm using canvasContext.getImageData(0, 0, 1, 1).data to retrieve pixel information on an image. It works great in all browsers except IE9. At random times the pixel information is not available, it ...
0
votes
0answers
74 views
Does Flickr support CORS? SECURITY ERROR with getImageData
Hello dear community.
I'm trying to create extract colors from images fetched from Flickr. That all works really great to the point when I try to process that images in canvas with getImageData().
...
0
votes
1answer
260 views
Canvas getImageData() after drawing image from file:// URI - need workaround for all browsers
I'm developer of Construct 2, a HTML5 game editor for Windows. It's at http://www.scirra.com.
Recently I've been trying to add a feature that will modify an image by transforming it on a canvas. ...
0
votes
2answers
187 views
Problem with getImageData function
So, I'm using this function getImageData on the "context" variable that I've made inside of the <script> part, and when I do something such as draw a rectangle then do ctx.getImageData.data[0] ...
0
votes
2answers
336 views
How to deal with getImageData at bounds in Firefox?
I'm currently writing a little drawing application that needs to access pixel data for its smudge and blur tools and bumped into a nasty issue with HTML5 Canvas API in Firefox. Apparently it does not ...