#include "PngReader.h" #include "BitStream.h" #include "Image.h" #include int main() { //const auto path = "/home/jmsgrogan/Downloads/test.png"; //const auto path = "/home/jmsgrogan/Downloads/index.png"; const auto path = "/home/jmsgrogan/code/MediaTool-build/bin/test.png"; PngReader reader; reader.setPath(path); auto image = reader.read(); return 0; }