Searched refs:binary (Results 1 – 18 of 18) sorted by relevance
7 LVGL provides a custom RLE compression method. It can be used to reduce binary10 The LVGL's built-in binary image decoder supports RLE compressed images.12 binary data is directly decoded to RAM78 Generate RLE compressed binary images
427 def binary(self) -> bytearray: member in LVGLImageHeader428 binary = bytearray()429 binary += uint8_t(0x19) # magic number for lvgl version 9430 binary += uint8_t(self.cf.value)431 binary += uint16_t(self.flags) # 16bits flags433 binary += uint16_t(self.w) # 16bits width434 binary += uint16_t(self.h) # 16bits height435 binary += uint16_t(self.stride) # 16bits stride437 binary += uint16_t(0) # 16bits reserved438 return binary[all …]
5 Redistribution and use in source and binary forms, with or without modification,11 * Redistributions in binary form must reproduce the above copyright notice, this
42 Install the binary in the rootfs_overlay
115 4. Select the type of image you want. Choosing a binary will generate a126 In the case of binary files, you need to specify the color format you221 binary file you uploaded and write it as an image "bitmap". You then291 …/* Call a binary image decoder function if required. It's not required if `my_png_decoder` opened …
342 to have a special binary format. (Not TTF or WOFF). Use
61 binary files as long as those fields can be easily viewed by the user.
85 binary files as long as those fields can be easily viewed by the user.
168 - Consider direct binary font format support
1319 # The BINARY_TOC flag controls whether a binary table of contents is generated2161 # DIA_PATH tag allows you to specify the directory where the dia binary resides.
501 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
48 the online converter tool, but select the binary output
141 LVGL's ``LVGLImage.py`` Python tool can be used to convert images to binary pixel map files.
258 ``./src/widgets/property/`` directory. Note that to support binary name searches,
286 …ons` linker flag to remove unused functions and variables from the final binary. If possible, add …
172 than unblocking a task using an intermediary object such as a binary semaphore.