Examples/spi_master: spiffier graphics

This commit is contained in:
Jeroen Domburg
2018-03-09 12:40:12 +08:00
parent 77eae33a7e
commit 1c4ad79c00
8 changed files with 303 additions and 28 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <stdint.h>
#include "esp_err.h"
/**
* @brief Decode the jpeg ``image.jpg`` embedded into the program file into pixel data.
*
* @param pixels A pointer to a pointer for an array of rows, which themselves are an array of pixels.
* Effectively, you can get the pixel data by doing ``decode_image(&myPixels); pixelval=myPixels[ypos][xpos];``
* @return - ESP_ERR_NOT_SUPPORTED if image is malformed or a progressive jpeg file
* - ESP_ERR_NO_MEM if out of memory
* - ESP_OK on succesful decode
*/
esp_err_t decode_image(uint16_t ***pixels);