lily_png/lily_png.h

17 lines
268 B
C
Raw Normal View History

2025-07-05 05:31:16 +02:00
#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;
};
buffer read_png(const std::string &file_path);