1# Bitmap Model
2
3The value of the Bitmap model is the sum of bytes used for native pixel data
4of instances of `android.graphics.Bitmap`. It is calculated by summing for
5each instance `x` of `android.graphics.Bitmap`:
6
7    x.getAllocationByteCount()
8
9The actionable breakdown of the Bitmap model is a breakdown by
10`android.graphics.Bitmap` instance, including width, height, and ideally a
11thumbnail image of each bitmap.
12
13For example, an 800 x 600 bitmap instance using the `ARGB_8888` pixel format
14with native pixel data will be shown as an 800 x 600 bitmap instance taking up
151875 kB.
16