stuff-from-scratch/test/image/TestPngReader.cpp
2022-11-21 17:45:12 +00:00

15 lines
235 B
C++

#include "PngReader.h"
#include "Image.h"
#include <iostream>
int main()
{
const auto path = "/home/jmsgrogan/Downloads/test.png";
PngReader reader;
reader.setPath(path);
auto image = reader.read();
return 0;
}