Skip to main content

Using the L8 Image Format to Reduce Memory Consumption

Images in the L8 format take up less flash storage and are faster to draw than e.g. ARGB8888.

An image in L8 format consists of a color palette and a pixel array: The color palette lists up to 256 different colors specified in either 16-bit format RGB565, 24-bit format RGB888, or 32-bit format ARGB8888. The pixel array consists of one byte for each pixel. This byte is an index into the color palette (list of colors), pointing out the color for the pixel. The TouchGFX framework draws an L8 image by reading the pixels one-by-one, looking up the colors in the palette and writing these to the framebuffer. This happens automatically and is accelerated by the STM32 Chrom-ART hardware accelerator, if available on the hardware.

8-bit per pixel means that one L8 image can use 256 different colors. Another L8 image can use 256 other colors, since the two images each have their own palette.

An L8 image with 4 x 4 pixels and a palette with 4 colors

Pixels are one byte (8-bit) each. The size of the pixels is therefore width x height bytes. The palette colors can be 16-bit, 24-bit, or 32 bit colors. Each color definition will therefore take up 2, 3, or 4 bytes.

Solid images should be stored in L8_RGB565 if the framebuffer is 16-bit (RGB565 format). If the framebuffer is 24-bit (RGB888) the L8 images must be stored in L8_RGB888 format. If the image is transparent the 32-bit format (ARGB8888) must be used:

FormatFramebuffer formatSupports transparent pixels
L8_RGB56516-bit RGB565No
L8_RGB88824-bit RGB888No
L8_ARGB8888BothYes
Further reading
  • Read more about palette image formats here: https://en.wikipedia.org/wiki/Indexed_color
  • Example L8 Image

    Here is a typical logo image. This image only uses 16 different colors:

    200 x 200 pixels L8 image with 16 different 24-bit colors.

    The size in flash of this image is significant lower than the original image in the standard 24-bit format (RGB888). The table below lists the flash usage for this concrete image for the three different palette formats and for the non L8 format

    FormatSize of pixels (bytes)Size of palette (bytes)Total size (bytes)Reduction in %
    RGB888120,0000120,000-
    L8_RGB56540,0003240,03266.6%
    L8_RGB88840,0004840,04866.6%
    L8_ARGB888840,0006440,06466.6%

    We see that the size reduction is very large, and that the size of the palette is insignificant on a medium sized image.

    Using L8 Images in TouchGFX Designer

    It is very easy to use the L8 image format in TouchGFX. The only thing to do is to configure the image converter to convert the image from PNG to L8 format. Here we will go through the whole process:

    Start a new project in the TouchGFX Designer. Copy your image to the assets/images folder in the new project:

    Images folder of TouchGFX project

    Now go to the TouchGFX Designer and click the Images tab in the top bar and select the image:

    Logo in Images view of TouchGFX Designer

    On the right side on the window, select image format L8_RGB888 (this example is running 24 bit colors).

    An image Widget can now be inserted on the canvas (here we inserted a Box in the background):

    Image widget on Canvas in TouchGFX Designer

    Nothing needs to be changed in the UI code. The Image Converter converts the PNG file and generates an image in L8 format because of the configuration we did in the Images tab.

    Transparent Images

    As mentioned above it is also possible to use L8 format for images with transparency.

    170 x 60 pixels button image in 32 bit format ARGB8888

    The above image uses 108 colors (many shades of blue). This image can use the format L8_ARGB8888. The size will be significantly lower:

    FormatSize of pixels (bytes)Size of palette (bytes)Total size (bytes)Reduction in %
    ARGB88840,800040,800-
    L8_ARGB888810,20043210,63273.9%

    Converting an image to 256 colors

    Many images use more than 256 colors. This is common for images that are photo-realistic or images with gradients. These images cannot directly be converted to L8 image format in the TouchGFX Designer, because they contain to many colors.

    In many cases though, it is possible to reduce the number of colors used in a specific image. Ideally, a graphics artist will convert/supply the images in 256 colors, however image manipulation tools can also perform the conversion without loosing too much of the image quality.

    Paint.NET

    The simplest way is to use Paint.NET. Open the original image and use Save As to save the image in another file. In the Save Configuration dialog, select 8-bit, as pixel depth:

    Paint.NET saving image in 8 bit format

    Now use the new PNG in your project. Remember to select the L8_ARGB8888 format in the Images tab in the TouchGFX Designer. Shadows are not handled very well, but icons with transparent edges looks good in many cases. It is possible to adjust the "Transparency threshold" value and in some cases improve the result.

    ImageMagick

    Another suitable tool, that sometimes results in better L8 images, is ImageMagick (download from www.imagemagick.org). This tool can convert images from the command line. This makes it suitable for use in scripts. To convert the clock_bg.png to an image using at most 256 colors, use the following command:

    magick convert clock_bg.png -colors 256 clock_bg_l8_256.png

    ImageMagick can also tell you how many colors are used in an image. Use this command:

    magick identify -format %k Blue_Buttons_Round_Edge_small.png

    Comparison

    The three images (original, L8 using Paint.NET, L8 using ImageMagick) are seen below for comparison:

    Clock image comparison, left to right: original, Paint.NET, ImageMagick

    The middle clock lost the details in the border shadow. In both cases the central part of the clock background looks useable.

    Manual Configuration

    It is also possible to select image formats without using the TouchGFX Designer. The image formats are specified in file application.config located in the project root:

    application.config
    {
    "image_configuration": {
    images": {
    "Blue_Buttons_Round_Edge_small.png": {
    "format": "L8_ARGB8888"
    }
    },
    "dither_algorithm": "2",
    "alpha_dither": "yes",
    "layout_rotation": "0",
    "opaque_image_format": "RGB888",
    "nonopaque_image_format": "ARGB8888",
    "section": "ExtFlashSection",
    "extra_section": "ExtFlashSection"
    }
    }

    The "images" section under "image_configuration" specifies the format for individual images. If an image is not mentioned here, the image will be generated in the default format (opaque_image_format or nonopaque_image_format).

    We recommend using the TouchGFX Designer for image configuration when possible.