I am trying to load an image using loadimage() and then updatepixels() for every pixel between img.width and img.height. By using a double for loop to cover all the pixels I'm starting from 0 in the screen. I have an info where my mouse is in the screen (I have the coordinates x, y) and I want to load the image starting from that point. If the mouse moves from that point I want the image to appear in the new spot. Since I have the coordinates how can I match them with the specific pixel in that position? I'd appreciate any idea...