summaryrefslogtreecommitdiff
path: root/src/JPEGOutputImage.H
blob: 4a9e60f34f940258e92726376853ea11df19da28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37

#ifndef JPEGOUTPUTIMAGE_H
#define JPEGOUTPUTIMAGE_H

#include <stdio.h>
extern "C" {
#include <jpeglib.h>
#undef HAVE_STDLIB_H
}

#include "OutputImage.H"

class JPEGOutputImage : OutputImage {
	private:
		unsigned char *row;
		char *file;
		struct jpeg_compress_struct cinfo;
		struct jpeg_error_mgr jerr;
		FILE *fp;
		int quality;

	public:
		JPEGOutputImage(const char *file, int quality = 90);

		~JPEGOutputImage();

	protected:
		int init_internal(int w, int h);

		int set_pixel_internal(int x, char r, char g, char b);	

		int next_line_internal();

		int done_internal();
};

#endif