Is it possible to use JavaFX to manipulate pixels like in Swing? Using an array of ints like this:
int[] buffer = ((DataBufferInt) image.getRaster().getDataBuffer()).getData();
This was using a buffered image, but I'm not sure what to change to get pixels like this in JavaFX. Edit: I would like to be able to edit any pixel in the frame in a while loop.