Home
last modified time | relevance | path

Searched refs:binary (Results 1 – 18 of 18) sorted by relevance

/lvgl-latest/docs/details/libs/
Drle.rst7 LVGL provides a custom RLE compression method. It can be used to reduce binary
10 The LVGL's built-in binary image decoder supports RLE compressed images.
12 binary data is directly decoded to RAM
78 Generate RLE compressed binary images
/lvgl-latest/scripts/
DLVGLImage.py427 def binary(self) -> bytearray: member in LVGLImageHeader
428 binary = bytearray()
429 binary += uint8_t(0x19) # magic number for lvgl version 9
430 binary += uint8_t(self.cf.value)
431 binary += uint16_t(self.flags) # 16bits flags
433 binary += uint16_t(self.w) # 16bits width
434 binary += uint16_t(self.h) # 16bits height
435 binary += uint16_t(self.stride) # 16bits stride
437 binary += uint16_t(0) # 16bits reserved
438 return binary
[all …]
/lvgl-latest/src/libs/lz4/
DLICENSE5 Redistribution and use in source and binary forms, with or without modification,
11 * Redistributions in binary form must reproduce the above copyright notice, this
/lvgl-latest/docs/details/integration/os/buildroot/
Dquick_setup.rst42 Install the binary in the rootfs_overlay
/lvgl-latest/docs/details/main-components/
Dimage.rst115 4. Select the type of image you want. Choosing a binary will generate a
126 In the case of binary files, you need to specify the color format you
221 binary file you uploaded and write it as an image "bitmap". You then
291 …/* Call a binary image decoder function if required. It's not required if `my_png_decoder` opened …
Dfont.rst342 to have a special binary format. (Not TTF or WOFF). Use
/lvgl-latest/examples/libs/freetype/
DOFL.txt61 binary files as long as those fields can be easily viewed by the user.
/lvgl-latest/tests/src/test_files/fonts/noto/
DOFL.txt61 binary files as long as those fields can be easily viewed by the user.
/lvgl-latest/scripts/built_in_font/font_license/Montserrat/
DOFL.txt61 binary files as long as those fields can be easily viewed by the user.
/lvgl-latest/scripts/built_in_font/font_license/FontAwesome5/
DLICENSE.txt85 binary files as long as those fields can be easily viewed by the user.
/lvgl-latest/docs/
DROADMAP.rst168 - Consider direct binary font format support
DDoxyfile1319 # The BINARY_TOC flag controls whether a binary table of contents is generated
2161 # DIA_PATH tag allows you to specify the directory where the dia binary resides.
/lvgl-latest/docs/details/integration/os/yocto/
Dlvgl_recipe.rst501 available and generates a binary file.
626 generated binary in the image.
910 Run this command to ensure the binary was generated and was installed in the
/lvgl-latest/docs/details/widgets/
Dimage.rst48 the online converter tool, but select the binary output
/lvgl-latest/docs/details/integration/chip/
Despressif.rst141 LVGL's ``LVGLImage.py`` Python tool can be used to convert images to binary pixel map files.
/lvgl-latest/docs/details/other-components/
Dobj_property.rst258 ``./src/widgets/property/`` directory. Note that to support binary name searches,
/lvgl-latest/docs/intro/
Dintroduction.rst286 …ons` linker flag to remove unused functions and variables from the final binary. If possible, add …
/lvgl-latest/
DKconfig172 than unblocking a task using an intermediary object such as a binary semaphore.