Images have logical dimensions (width and height), and their in memory representation has physical dimensions. They typically have a "stride", which equals the number of bytes (or pixels?) you should advance in order to get to the next scanline. Assuming all numbers are positive, stride>=width will hold true, stride==width may or may not be true. See also BitmapData.Stride :)
Luc Pattyn