Skip to main content

Inkplate 6COLOR – Soldered Image Converter

Soldered Image Converter
Soldered Image Converter web tool

The Soldered Image Converter is a free web tool that converts images into .h header files ready to include in your Arduino sketch and display on Inkplate.

Soldered Image Converter

Open the web-based image converter tool.


Workflow

  1. Open the tool at tools.soldered.com/tools/image-converter.
  2. Upload your image (PNG, JPG, or BMP).
  3. Select Inkplate 6COLOR as the target board.
  4. Choose the display mode:
    • 7-color, Black, White, Green, Blue, Red, Yellow, Orange
  5. Adjust dithering, resize, and other options as needed.
  6. Download the generated image.h file.

Using the generated file

Place image.h in your sketch's project folder. To find this folder, go to Sketch → Show Sketch Folder in Arduino IDE.

Then include it and draw the image:

#include "Inkplate.h" // Include the Inkplate library
#include "image.h" // Include the image header generated by the Image Converter tool

Inkplate display; // Create an Inkplate object for Inkplate 6COLOR

void setup() {
display.begin(); // Initialize the display hardware
display.clearDisplay(); // Clear the frame buffer (does NOT clear the physical screen)

display.image.draw(image, 0, 0, image_w, image_h); // Arguments are: array variable name, start X, start Y, size X, size Y

display.display(); // Refresh the e-paper display to show the image
}

void loop() {
// No code needed here for this example
}

Inkplate6COLOR_Image_Converter.ino

Full example showing how to display an image generated by the Image Converter tool.