summaryrefslogtreecommitdiff
path: root/src/TIFFOutputImage.H
blob: 9b0f83b26acf50004f0cb3ed91bbc76e0045b20d (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
//
// Copyright 2006 Johannes Hofmann <Johannes.Hofmann@gmx.de>
//
// This software may be used and distributed according to the terms
// of the GNU General Public License, incorporated herein by reference.

#ifndef TIFFOUTPUTIMAGE_H
#define TIFFOUTPUTIMAGE_H

#include <stdio.h>
#include <tiffio.h>

#include "OutputImage.H"

class TIFFOutputImage : public OutputImage {
	private:
		int bitspersample;
		unsigned char *row;
		char *file;
		TIFF *tiff;

	public:
		TIFFOutputImage(const char *file, int b = 8);

		~TIFFOutputImage();

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

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

		int next_line_internal();

		int done_internal();
};

#endif