chore(libs/png): rename lv_png to lv_lodepng (#4574)

Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
This commit is contained in:
_VIFEXTech
2023-09-20 16:30:04 +08:00
committed by GitHub
parent f77cacd1b7
commit 45fb2148d5
27 changed files with 59 additions and 59 deletions

View File

@@ -9,7 +9,7 @@
fs
bmp
sjpg
png
lodepng
gif
freetype
tiny_ttf

View File

@@ -1,11 +1,11 @@
===========
PNG decoder
===========
===============
LODEPNG decoder
===============
Allow the use of PNG images in LVGL. This implementation uses
`lodepng <https://github.com/lvandeve/lodepng>`__ library.
If enabled in ``lv_conf.h`` by :c:macro:`LV_USE_PNG` LVGL will register a new
If enabled in ``lv_conf.h`` by :c:macro:`LV_USE_LODEPNG` LVGL will register a new
image decoder automatically so PNG files can be directly used as any
other image sources.
@@ -21,7 +21,7 @@ As it might take significant time to decode PNG images LVGL's :ref:`image-cachin
Example
-------
.. include:: ../examples/libs/png/index.rst
.. include:: ../examples/libs/lodepng/index.rst
API
---