mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 20:43:37 +01:00
14 lines
299 B
C
14 lines
299 B
C
//---
|
|
// fxlink:png - Tools to output PNG images with libpng
|
|
//---
|
|
|
|
#ifndef FXLINK_PNG_H
|
|
#define FXLINK_PNG_H
|
|
|
|
#include <png.h>
|
|
|
|
/* fxlink_png_save(): Save a bitmap into a PNG file */
|
|
int fxlink_png_save(png_byte **row_pointers, int width, int height,
|
|
char const *path);
|
|
|
|
#endif /* FXLINK_PNG_H */
|