stuff-from-scratch/test/image/TestPngReader.cpp
2022-11-24 17:43:31 +00:00

21 lines
401 B
C++

#include "PngReader.h"
#include "BitStream.h"
#include "Image.h"
#include <iostream>
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;
}