stuff-from-scratch/test/image/TestPngReader.cpp

16 lines
235 B
C++
Raw Normal View History

2022-08-01 13:00:40 +00:00
#include "PngReader.h"
#include "Image.h"
#include <iostream>
int main()
{
2022-11-21 17:45:12 +00:00
const auto path = "/home/jmsgrogan/Downloads/test.png";
2022-08-01 13:00:40 +00:00
PngReader reader;
reader.setPath(path);
auto image = reader.read();
return 0;
}