-
Notifications
You must be signed in to change notification settings - Fork 11
/
picture.h
126 lines (95 loc) · 3.47 KB
/
picture.h
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
Picture Class for C++
(c) 2005 Rebecca Bettencourt / Kreative Korporation
This is a class that lets us manipulate bitmapped graphics in memory.
This code is under the MIT license.
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies
or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifndef _____PICTURE_H_____
#define _____PICTURE_H_____
#include <cstring>
#include <fstream>
using namespace std;
class CBuf;
int __bitmap_row_width(int width, int height, int depth);
int __bitmap_size(int width, int height, int depth);
unsigned int __pow2(int p);
unsigned int __pow21(int p);
class picture
{
public:
picture(void);
picture(int w, int h, int d, bool greymask);
~picture(void);
void reinit(int w, int h, int d, bool greymask);
int gwidth(void);
int gheight(void);
int gdepth(void);
int gmaskdepth(void);
int bitmapsize(void);
int masksize(void);
int coordbyteoffset(int, int);
unsigned int coordbitmask(int, int);
int maskcoordbyteoffset(int, int);
unsigned int maskcoordbitmask(int, int);
void memcopyin(const char *, int, int);
void memcopyin(const char *, int, int, int);
void maskmemcopyin(const char *, int, int);
void maskmemcopyin(const char *, int, int, int);
void memcopyout(char * dest, int start, int count);
void memcopyout(char * dest, int x, int y, int count);
void maskmemcopyout(char * dest, int start, int count);
void maskmemcopyout(char * dest, int x, int y, int count);
void memcopyout(CBuf& dest, int start, int count);
void memcopyout(CBuf& dest, int x, int y, int count);
void maskmemcopyout(CBuf& dest, int start, int count);
void maskmemcopyout(CBuf& dest, int x, int y, int count);
void memfill(char, int, int);
void memfill(char, int, int, int);
void maskmemfill(char, int, int);
void maskmemfill(char, int, int, int);
void buildmaskfromsurroundings();
void scanstartingatpixel( int x, int y );
void debugprint();
void copyrow(int, int);
void maskcopyrow(int, int);
unsigned int fixcolor(unsigned int);
unsigned int dupcolor(unsigned int);
unsigned int getpixel(int, int);
void setpixel(int, int, int);
unsigned int maskgetpixel(int, int);
void masksetpixel(int, int, int);
void __directcopybmptomask(void);
void bwrite(fstream);
void bread(fstream);
void writefile(char *);
void writebitmapandmasktopbm(char * fn);
void writebitmaptopbm(char * fn);
void writemasktopbm(char * fn);
void readfile(char *);
private:
int width;
int height;
int depth;
bool greyscalemask;
int rowlength;
int maskrowlength;
int bitmaplength;
char * bitmap;
int masklength;
char * mask;
};
#endif