After completing the and installation, you need to test it. Copy and paste the following code into your Arduino IDE.
This code creates a new image with dimensions 512x512, sets the pixel data to red, and saves the image to a file named "output.png". rmaker.h library download zip
// Set the pixel data for (int y = 0; y < image.height(); y++) { for (int x = 0; x < image.width(); x++) { // Set the pixel color to red image.setPixel(x, y, RMaker::Color(255, 0, 0)); } } After completing the and installation, you need to test it