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

16 lines
250 B
C++
Raw Normal View History

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