Image Extraction

From Waveshare Wiki
Jump to: navigation, search

Introduction

When developing an embedded microcontroller, you need to use LCD/OLED to display a picture. The most direct and simple way is to use corresponding tools to convert the picture into corresponding data points (actually a 2-dimensional array), and then you can use the corresponding code to display the array on the LCD/OLED display by sequence.

Steps

1. Click Image2Lcd2.9.zip to download the tool.
2. Double-click to enter the interface.
Image extraction01.jpg
3. Open the image that needs to be extracted. (Here we take a 1.47inch LCD Module as an example.)

  • Parameter setting
Output data type: C array (*.c)
Scan mode: vertical
Output grayscale: 16-bit true color
Maximum width and height (set according to the actual aspect ratio of the image): 172x320
Output image adjustment: the default setting is fine, if you need color inversion, check Color Inversion
Click 16-bit color: color bits -> RGB565, order of colors -> RGB

Image extraction02.jpg
4. Save the setting.

  • The path and name are set by the user.
  • The file type is .c file.
  • After saving, an array will be generated, after ctrl+A selects all:

Image extraction03.jpg

  • Copy it to the "Image. c" file.

Image extraction04.jpg

  • And declare it in Image.h:

Image extraction05.jpg

  • Finally, call the main function and map it to the screen.

Image extraction06.jpg
The effect is shown below:
Image extraction07.jpg