RGB values from image into a one dimension array in c#
- by velocityxyz
I was wondering if there is a was a way to read rgb values from an image into a one dimensional array in C#. If it doesnt make sense, in java I would do something like this.
int[] pixels;
BufferedImage image = getClass().getResourceAsStream("asdfghjkl.png");
int w = image.getWidth();
int h = image.getHeight();
pixels = new int[w * h];
image.getRGB(0, 0, w, h, pixels, 0, w) ;
So any help would be great, or if you can point me in the right direction, that'd be great