blob: caf081b733e15e7a90c23e857ddbff8fca2e0666 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) 2015 YamaArashi
#ifndef CONVERT_PNG_H
#define CONVERT_PNG_H
#include "gfx.h"
void ReadPng(char *path, struct Image *image);
void WritePng(char *path, struct Image *image);
void ReadPngPalette(char *path, struct Palette *palette);
#endif // CONVERT_PNG_H
|