[go: up one dir, main page]

Menu

[7d60eb]: / src / jpeg.h  Maximize  Restore  History

Download this file

8 lines (5 with data), 176 Bytes

1
2
3
4
5
6
7
#ifndef jpeg_h
#define jpeg_h
unsigned char *loadjpeg(const char *path, int *width, int *height);
int savejpeg(char *path, unsigned char *rgb, int width, int height);
#endif