| Feature | Resolution | Color Depth |
|---|---|---|
| Focus | Spatial detail and sharpness | Range and accuracy of colors |
| Impact | More pixels = smoother edges | More bits = more realistic shading |
| Storage | Increases linearly with pixel count | Increases linearly with bit count |
Resolution vs. Quality: While increasing resolution generally improves quality, it cannot add detail to an image that was originally captured at a lower resolution; it merely makes the existing grid finer.
Raw vs. Compressed: A raw bitmap stores every pixel's data explicitly, whereas compressed formats like RLE use mathematical patterns to reduce redundancy without necessarily losing visual information.
Unit Awareness: Always check if the question asks for the answer in bits, bytes, KB, or MB. Forgetting to divide by 8 to reach bytes is the most common source of lost marks.
The Rule: Memorize powers of 2 (2, 4, 8, 16, 32, 64, 128, 256) to quickly determine the number of colors supported by a given bit depth.
Metadata Necessity: If asked why an image cannot be displayed from a raw bitstream, the answer is usually the lack of metadata. Without knowing the width and height, the computer cannot know where one row ends and the next begins.
RLE Efficiency: Remember that RLE is only effective for images with large areas of uniform color. It may actually increase the file size of highly detailed, noisy images where colors change every pixel.