mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-06 23:57:39 +03:00
12 lines
254 B
C++
12 lines
254 B
C++
#pragma once
|
|
|
|
#include <Print.h>
|
|
#include <SdFat.h>
|
|
|
|
class PngToBmpConverter {
|
|
public:
|
|
// Convert PNG file to 2-bit BMP stream
|
|
// Similar API to JpegToBmpConverter for consistency
|
|
static bool pngFileToBmpStream(FsFile& pngFile, Print& bmpOut);
|
|
};
|