okay, so of course, when you GET an image, the variables in the array holding the image would look like this.
image(0) = 160 'width times 8
image(1) = 20 'height
image(2) = 2342 'first two pixels
image(3) = 5435 'next two pixels...
...
...
of course, qb adds the first pixel color to the second times 256, like this...
image(2) = color1 + color2 * 256
now, my question is this: how can i find out what one pixel would be? does anyone know how i could learn what, say, color1 would be without using def seg, varseg, and varptr? thanks.
image(0) = 160 'width times 8
image(1) = 20 'height
image(2) = 2342 'first two pixels
image(3) = 5435 'next two pixels...
...
...
of course, qb adds the first pixel color to the second times 256, like this...
image(2) = color1 + color2 * 256
now, my question is this: how can i find out what one pixel would be? does anyone know how i could learn what, say, color1 would be without using def seg, varseg, and varptr? thanks.