I am looking to start a project that deals with images and I don't really know how to get started. Basically, I want to take an image, and get the RGB or hex code for the image for each pixel, pixel by pixel. So if an image was 10x10 pixels, I would want 100 pieces of data for that image. A push in the right direction is all that I am looking for. Thanks, Jimmy
Depending on what language you are gonna be using but it's gonna be something like this: for x to imageWidth for y to imageHeight getpixel(x,y)
When using PHP it would cost about 10-20 minutes to create, upload image, get list with all color codes (x,y,color).