> 2010/1/17 kevinfishburne :
> > When retrieving the value of a pixel at x,y from the picture in a
> > picturebox control it outputs a single value. How does this value
> > represent the pixel's value, and can it be easily converted to an RGB
> > value?
>
> Red = Value Mod 256
> Green = Int(Value
2010/1/17 kevinfishburne :
> When retrieving the value of a pixel at x,y from the picture in a picturebox
> control it outputs a single value. How does this value represent the pixel's
> value, and can it be easily converted to an RGB value?
Red = Value Mod 256
Green = Int(Value / 256) Mod 256
Bl
When retrieving the value of a pixel at x,y from the picture in a picturebox
control it outputs a single value. How does this value represent the pixel's
value, and can it be easily converted to an RGB value?
This is something that's going to need to be done 4,294,967,296 times, so is
there a qui