GadgetSeed  0.9.6
jpegdec.h
[詳解]
1 /** @file
2  @brief JPEGデコード
3 
4  @date 2017.11.12
5  @author Takashi SHUDO
6 */
7 
8 #ifndef JPEGDEC_H
9 #define JPEGDEC_H
10 
11 #include "picojpeg-master/picojpeg.h"
12 
13 int get_jpeg_file_info(int fd, pjpeg_image_info_t *jpeginfo, int reduce);
14 int get_jpeg_data_info(unsigned char *jpeg_data, pjpeg_image_info_t *jpeginfo, int reduce);
15 int draw_jpeg(short px, short py);
16 int decode_jpeg(void *image);
17 
18 #endif // JPEGDEC_H