stuff-from-scratch/test/image/TestPngReader.cpp
2022-11-23 15:41:33 +00:00

19 lines
323 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";
PngReader reader;
reader.setPath(path);
auto image = reader.read();
return 0;
}