I'm trying to write a greasemonkey script, and it would be preferable for it to be able to work with images (specifically, find the darkest pixel in an image). Is there a way to do this or must I embed flash?
|
3
|
|
|
|
|
|
Since it's Firefox specific, you can use a canvas element. I've never written a greasemonkey script, so I don't know exactly how you would do it, but the idea is, you create a new canvas element and draw the image onto the canvas. Then, you can get the pixel values from the canvas.
|
||
|
|
|
|
Scrap the
part, Javascript doesn't pass by reference. |
||
|
|
|
|
Can I load an image that is on the page into the canvas? This looks promising, thank you. |
||||
|
