Compare commits

...

2 Commits

Author SHA1 Message Date
interfisch 14a61e97b8 move comments to top of file 2022-11-11 21:10:28 +01:00
interfisch 15e21f74cc 2 bit dithered images 2022-11-11 21:04:25 +01:00
4 changed files with 1024 additions and 1005 deletions

BIN
imageconverter/4gray.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 519 B

View File

@ -3,6 +3,9 @@ import math
import argparse
import os.path
#for a 2-bit dithered grayscale image use:
# convert testimage.png -dither FloydSteinberg -define dither:diffusion-amount=85% -remap 4gray.png -compress RLE -define png:color-type=6 output.png
def swapBits(number, nbits):
if nbits==2:

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,22 @@
// Library, connections and info from: https://www.waveshare.com/wiki/E-Paper_ESP32_Driver_Board#Resource
// Display: https://www.waveshare.com/product/4.2inch-e-paper.htm
//Convert to 1 bit grayscale:
//maybe dither before
// convert image to array:
// python3 img2array.py -i image.png
//Convert to 2 bit grayscale dithered:
// first convert image to dithered 2 bit image:
// convert testimage.png -dither FloydSteinberg -define dither:diffusion-amount=85% -remap 4gray.png -compress RLE -define png:color-type=6 output.png
// then image to array:
// python3 img2array.py --bitdepth 2 --lsbfirst --colorlsbfirst testimage.png
// then copy generated ...png.txt content to ImageData.cpp
/* Includes ------------------------------------------------------------------*/
#include "DEV_Config.h"
#include "EPD.h"
@ -38,7 +54,7 @@ void setup()
printf("show image for array\r\n");
Paint_SelectImage(BWImage);
Paint_Clear(WHITE);
Paint_DrawBitMap(gImage_4in2); //to convert image use: python3 img2array.py -i image.png
Paint_DrawBitMap(gImage_4in2);
EPD_4IN2_Display(BWImage);
free(BWImage);
@ -64,7 +80,7 @@ void setup()
Paint_SelectImage(GSImage);
Paint_SetScale(4);
Paint_DrawBitMap(gImage_4in2);
Paint_DrawBitMap(gImage_4in2);
EPD_4IN2_4GrayDisplay(GSImage);
DEV_Delay_ms(10000);