blob: 1c9aad8f3c3a8b844483ebae56fd66c110e43acd (
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
  | 
#ifndef TIFFOUTPUTIMAGE_H
#define TIFFOUTPUTIMAGE_H
#include <stdio.h>
#include <tiffio.h>
#include "OutputImage.H"
class TIFFOutputImage : OutputImage {
	private:
		unsigned char *row;
		char *file;
		TIFF *tiff;
	public:
		TIFFOutputImage(const char *file);
		~TIFFOutputImage();
	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
  |