Skip to main content

Draw Image from Web

Drawing an image from the web on Inkplate 6MOTION is simple using the draw function, which supports multiple image formats.

ℹ️
Supported formats: JPG, BMP, and PNG.
⚠️
JPG files without progressive encoding are supported.
ℹ️
If you experience issues displaying an image, try re-saving it with an image editing program. The issue is usually related to the image format.

Drawing an Image from a URL

Let's draw this image of the Eurodom building in Osijek, Croatia on Inkplate 6MOTION:

Example image by @filipbaotic on Pexels
// Ensure Inkplate is connected to the internet
const char * imageUrl = "docs.inkplate.com/img/sample_image.jpg";
// Draw the image using Floyd-Steinberg dither kernel
if (!inkplate.image.draw(imageUrl, 0, 0, false, 1, FS_KERNEL, FS_KERNEL_SIZE))
{
// Show error on the screen if decoding fails
inkplate.println("Image download or decode failed!");
inkplate.printf("Decode Err: %d\r\n", inkplate.image.getError());
}
// Show the result on the display
inkplate.partialUpdate();

inkplate.image.draw()

Loads an image from the microSD card or web, decodes it, and stores it in the ePaper framebuffer. Supports optional dithering, color inversion, and format/path specification.

Returns: Returns true if the image was successfully loaded into the framebuffer, otherwise false. Use ImageDecoder::getError() for failure details.

Function parameters:

TypeNameDescription
const char*_pathPath and filename of the image. Can be a URL (for web images) or a file path (on the microSD card).
int_xX-coordinate of the image's upper-left corner in the framebuffer.
int_yY-coordinate of the image's upper-left corner in the framebuffer.
bool_invertIf true, inverts colors.
uint8_t_ditherDithering mode: 0 (disabled), 1 (enabled).
const KernelElement*_ditherKernelParametersDithering kernel to be used. Options: FS_KERNEL (Floyd-Steinberg), STUCKI_KERNEL, SIERRA_KERNEL, SIERRA_LITE_KERNEL, ATKINSON_KERNEL, BURKES_KERNEL.
size_t_ditherKernelParametersSizeSize of the selected dithering kernel, 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 of an error, you can use getError():

inkplate.image.getError()

Retrieves the last error encountered while decoding an image using ImageDecoder::draw(). Errors are cleared before each 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_Image_From_Web.ino

Connect to WiFi and draw an image from the web.