Skip to main content

Image from microSD

To draw images from the microSD card, use the draw function.

ℹ️
Supported formats are: JPG, BMP and BMP.
⚠️
JPG files without progressive encoding are supported.

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:

Images on 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:

TypeNameDescription
const char*_pathPath and filename of the image. Can be a URL for a web image or a file path on the microSD card.
int_xX position of the image in the ePaper framebuffer (upper-left corner).
int_yY position of the image in the ePaper framebuffer (upper-left corner).
bool_invertIf true, colors are inverted.
uint8_t_ditherDithering mode: 0 (disabled), 1 (enabled).
const KernelElement*_ditherKernelParametersDithering 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_ditherKernelParametersSizeSize of the selected dithering kernel. Use the kernel name with the '_SIZE' suffix, e.g., FS_KERNEL_SIZE.
enum InkplateImageDecodeFormat_formatOptional. Forces a specific image format if automatic detection fails.
enum InkplateImagePathType_pathTypeOptional. 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 ValueDescription
INKPLATE_IMAGE_DECODE_NO_ERRNo error
INKPLATE_IMAGE_DECODE_ERR_BAD_PARAMInvalid parameter
INKPLATE_IMAGE_DECODE_ERR_UNKNOWN_FORMATUnknown image format
INKPLATE_IMAGE_DECODE_ERR_FILE_OPEN_FAILFailed to open image file
INKPLATE_IMAGE_DECODE_ERR_NO_MEMORYNot enough memory for decoding
INKPLATE_IMAGE_DECODE_ERR_BMP_DECODER_FAULTBMP decoder error
INKPLATE_IMAGE_DECODE_ERR_JPG_DECODER_FAULTJPG decoder error
INKPLATE_IMAGE_DECODE_ERR_PNG_DECODER_FAULTPNG decoder error
INKPLATE_IMAGE_DECODE_ERR_BMP_HARD_FAULTCritical BMP decoding fault

Full example

Inkplate_6_Motion_Images_From_SD.ino

Full example of opening and displaying images from the SD card.