initial commit
This commit is contained in:
commit
7ca79b731d
5 changed files with 89 additions and 0 deletions
17
library.h
Normal file
17
library.h
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue