initial commit

This commit is contained in:
Luna 2025-07-05 05:31:16 +02:00
commit 7ca79b731d
5 changed files with 89 additions and 0 deletions

17
library.h Normal file
View file

@ -0,0 +1,17 @@
#pragma once
#include "file_reader/src/file_read.h"
#include <string>
struct metadata
{
unsigned int width;
unsigned int height;
char bit_depth;
char color_type;
char compression;
char filter;
char interface;
};
char *read_png(const std::string &file_path);