Further compression and png work.

This commit is contained in:
James Grogan 2022-11-23 15:41:33 +00:00
parent 318b481ccc
commit 9c8faa534b
34 changed files with 1164 additions and 203 deletions

View file

@ -1,11 +1,15 @@
#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/test.png";
const auto path = "/home/jmsgrogan/Downloads/index.png";
PngReader reader;
reader.setPath(path);

View file

@ -1,6 +1,8 @@
#include "Image.h"
#include "PngWriter.h"
#include "BitStream.h"
#include "ImagePrimitives.h"
#include <iostream>