If I create an image thus:
var myImg = new Image ();
I can then do the following:
myImg.src = "someimage.jpg" ;
But, I can't seem to find a way to manipulate the pixels of the image in
myImg (say, to invert each one).
Equally, if I have image data that I have read in from a database
record, I don't seem to find a way to stuff that directly into myImg.
Is this all actually the case or have I overlooked something?
var myImg = new Image ();
I can then do the following:
myImg.src = "someimage.jpg" ;
But, I can't seem to find a way to manipulate the pixels of the image in
myImg (say, to invert each one).
Equally, if I have image data that I have read in from a database
record, I don't seem to find a way to stuff that directly into myImg.
Is this all actually the case or have I overlooked something?
Comment