Image from microSD
To draw images from the microSD card, use the draw
function.
Drawing PNG, JPG and BMP files from the microSD card
Let's draw the example images of different formats on Inkplate, download them from the Inkplate library and place them in the root folder of the microSD card:
Let's draw image1.png
at coordinates 0, 0 and using the Floyd-Steinberg dither kernel:
// Make sure Inkplate and then the microSD card are initialized before this
if (!inkplate.image.draw("image1.png", 0, 0, false, 1, FS_KERNEL, FS_KERNEL_SIZE))
{
// Show error on the screen if decode failed
inkplate.println("Image decode failed!");
inkplate.printf("Decode Err: %d\r\n", inkplate.image.getError());
inkplate.partialUpdate();
}
else
{
// The image has been drawn!
// Otherwise, refresh the screen with a partial update
inkplate.partialUpdate();
}
Here are some more examples: drawing image2.jpg
without dithering, and image3.bmp
with Sierra Lite dithering:
inkplate.image.draw("image2.jpg", 0, 0, false, 0, NULL, 0));
inkplate.image.draw("image3.bmp", 0, 0, false, 1, SIERRA_LITE_KERNEL, SIERRA_LITE_KERNEL_SIZE);
inkplate.image.draw()
Part of the ImageDecoder class. Loads an image from the microSD card or the web, decodes it, and stores the decoded image in the main ePaper framebuffer. Supports optional dithering, color inversion, and format/path specification.
Returns: Returns true if the image was successfully loaded into the framebuffer, otherwise returns false. Use ImageDecoder::getError() to check for failure reasons.
Function parameters:
Type | Name | Description |
---|---|---|
const char* | _path | Path and filename of the image. Can be a URL for a web image or a file path on the microSD card. |
int | _x | X position of the image in the ePaper framebuffer (upper-left corner). |
int | _y | Y position of the image in the ePaper framebuffer (upper-left corner). |
bool | _invert | If true, colors are inverted. |
uint8_t | _dither | Dithering mode: 0 (disabled), 1 (enabled). |
const KernelElement* | _ditherKernelParameters | Dithering kernel to be used. Options: FS_KERNEL (Floyd-Steinberg), STUCKI_KERNEL (Stucki), SIERRA_KERNEL (Sierra), SIERRA_LITE_KERNEL (Sierra Lite), ATKINSON_KERNEL (Atkinson), BURKES_KERNEL (Burke). |
size_t | _ditherKernelParametersSize | Size of the selected dithering kernel. Use the kernel name with the '_SIZE' suffix, e.g., FS_KERNEL_SIZE. |
enum InkplateImageDecodeFormat | _format | Optional. Forces a specific image format if automatic detection fails. |
enum InkplateImagePathType | _pathType | Optional. Forces a specific image source (web or microSD card). |
In case there's an error, as mentioned, you can use getError
:
inkplate.image.getError()
Retrieves the last error encountered while decoding an image using ImageDecoder::draw(). If no error occurred, it returns INKPLATE_IMAGE_DECODE_NO_ERR. Errors are cleared before each new decoding process.
Returns: Returns an InkplateImageDecodeErrors enum value representing the last encountered error.
Enum Value | Description |
---|---|
INKPLATE_IMAGE_DECODE_NO_ERR | No error |
INKPLATE_IMAGE_DECODE_ERR_BAD_PARAM | Invalid parameter |
INKPLATE_IMAGE_DECODE_ERR_UNKNOWN_FORMAT | Unknown image format |
INKPLATE_IMAGE_DECODE_ERR_FILE_OPEN_FAIL | Failed to open image file |
INKPLATE_IMAGE_DECODE_ERR_NO_MEMORY | Not enough memory for decoding |
INKPLATE_IMAGE_DECODE_ERR_BMP_DECODER_FAULT | BMP decoder error |
INKPLATE_IMAGE_DECODE_ERR_JPG_DECODER_FAULT | JPG decoder error |
INKPLATE_IMAGE_DECODE_ERR_PNG_DECODER_FAULT | PNG decoder error |
INKPLATE_IMAGE_DECODE_ERR_BMP_HARD_FAULT | Critical BMP decoding fault |
Full example
Inkplate_6_Motion_Images_From_SD.ino
Full example of opening and displaying images from the SD card.