2016-06-20 8 views
3

Ich bin gerade dabei, das imageData-Pixel-Array eines Canvas-Elements zu durchlaufen. Ich möchte die erste (oberste) Reihe und die letzte (untere) Reihe von Pixeln durchlaufen. Wie mache ich das?Erste und letzte Pixelreihe mit imageData

Dies ist, wie ich bin durch das gesamte Pixelfeld Looping:

 //Var declarations, etc. 
     imageData = context.getImageData(0, 0, cols, rows); 

     for (var i = 0, max = imageData.data.length; i < max; i+=4) { 

      //This is looping through the entire array. 
     } 

Antwort