
1. What is the valid width and height of this bitmap image file? (image size) = (width) x (height) x (byte per pixel)이다. width는 0x3d1, height는 0x2c7, bit per pixel은 0x18, image size는 0x21a1c4라고 정보가 나와있으나, width는 잘못된 값이라고 한다. image size의 단위는 비트가 아니라 바이트이므로 byte per pixel은 0x3이다. 따라서, (실제 width) = (image size) / (height) / (byte per pixel) = 0x21a1c4 / 0x2c7 / 0x3 = 0x409이다. 이것을 십진수로 표현하면 (width) ..