/lvgl-latest/docs/details/libs/ |
D | rle.rst | 19 of every compress level. For rare conditions, RLE compress may increase the file 22 .. image:: rle-compress-statistics.png 23 :alt: RLE compress statistics from a watch project 34 original color value. For more details, the script used to compress the image 86 ./script/LVGLImage.py --ofmt BIN --cf I8 --compress RLE cogwheel.png
|
D | lodepng.rst | 30 that do not use the whole color space, so it is possible to compress further 33 to compress images.
|
/lvgl-latest/tests/ |
D | main.py | 200 for compress in CompressMethod: 201 compress_name = compress.name if compress != CompressMethod.NONE else "UNCOMPRESSED" 209 img.to_bin(output, compress=compress) 211 img.to_c_array(output, compress=compress)
|
/lvgl-latest/tests/src/test_cases/draw/ |
D | test_image_formats.c | 258 static void bin_image_create(bool rotate, bool recolor, int align, int compress) in bin_image_create() argument 265 …(path, sizeof(path), "A:test_images/stride_align%d/%s/test_%s.bin", stride, compressions[compress], in bin_image_create() 271 static void c_array_image_create(bool rotate, bool recolor, int align, int compress) in c_array_image_create() argument 275 lv_snprintf(name, sizeof(name), "%s%s", compressions[compress], color_formats[i]); in c_array_image_create() 276 const void * src = c_array_images[align][compress][i]; in c_array_image_create()
|
/lvgl-latest/scripts/ |
D | LVGLImage.py | 312 compress: CompressMethod, 319 if compress is not CompressMethod.NONE: 375 if compress != CompressMethod.NONE: 461 self.compress = method 467 if self.compress == CompressMethod.NONE: 470 if self.compress == CompressMethod.RLE: 476 elif self.compress == CompressMethod.LZ4: 477 compressed = lz4.block.compress(raw_data, store_size=False) 484 bin += uint32_t(self.compress.value) 747 compress: CompressMethod = CompressMethod.NONE): [all …]
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSaveModule.h | 39 virtual bool save(Paint* paint, const string& path, bool compress) = 0;
|
D | tvgSaver.cpp | 123 Result Saver::save(std::unique_ptr<Paint> paint, const string& path, bool compress) noexcept in save() argument 135 if (saveModule->save(p, path, compress)) { in save()
|
D | tvgCapi.cpp | 799 …_API Tvg_Result tvg_saver_save(Tvg_Saver* saver, Tvg_Paint* paint, const char* path, bool compress) in tvg_saver_save() argument 802 …vg_Result) reinterpret_cast<Saver*>(saver)->save(unique_ptr<Paint>((Paint*)paint), path, compress); in tvg_saver_save()
|
D | thorvg_capi.h | 2364 …API Tvg_Result tvg_saver_save(Tvg_Saver* saver, Tvg_Paint* paint, const char* path, bool compress);
|
D | thorvg.h | 2051 … Result save(std::unique_ptr<Paint> paint, const std::string& path, bool compress = true) noexcept;
|
/lvgl-latest/src/libs/lodepng/ |
D | lodepng.h | 1168 unsigned compress(std::vector<unsigned char> & out, const unsigned char * in, size_t insize, 1172 unsigned compress(std::vector<unsigned char> & out, const std::vector<unsigned char> & in,
|
D | lodepng.c | 6125 static unsigned addChunk_iTXt(ucvector * out, unsigned compress, const char * keyword, const char *… in addChunk_iTXt() argument 6137 if(compress) { in addChunk_iTXt() 6142 … size_t size = keysize + 3 + langsize + 1 + transsize + 1 + (compress ? compressedsize : textsize); in addChunk_iTXt() 6150 chunk[pos++] = (compress ? 1 : 0); /*compression flag*/ in addChunk_iTXt() 6158 if(compress) { in addChunk_iTXt() 7484 unsigned compress(std::vector<unsigned char> & out, const unsigned char * in, size_t insize, in compress() function 7497 unsigned compress(std::vector<unsigned char> & out, const std::vector<unsigned char> & in, in compress() function 7500 return compress(out, in.empty() ? 0 : &in[0], in.size(), settings); in compress()
|
/lvgl-latest/env_support/cmsis-pack/ |
D | README.md | 141 /*Enable LZ4 compress/decompress lib*/
|
/lvgl-latest/docs/details/main-components/ |
D | font.rst | 247 - not passing the ``--no-compress`` flag to the offline converter (compression is applied by defaul… 251 recommended to compress only the largest fonts of a user interface, 469 …lv_font_conv --bpp 1 --size 12 --no-compress --font TerminusMedium-001.000.ttf --range 0x20-0x7e,0…
|
/lvgl-latest/docs/_static/css/ |
D | fontawesome.min.css | 5 …ontent:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress…
|
/lvgl-latest/ |
D | Kconfig | 1397 bool "Enable LZ4 compress/decompress lib"
|