i know that GetDIBits() converts RGB to BGR colors(it's how they work).
but for work with coordinates theres any diference??
or do i need convert them for compare them(using '+' or '-')?
i always do:
Code:
For Y = 0 To Height - 1
    For X = 0 To Width - 1
             '..........
    next X
next y
but i can use pixel(x+2, y+3) for compare the colors(converted to BGR) or i must convert the coordenates too?