forked from yuryfdr/pbtk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPBImg.h
More file actions
111 lines (108 loc) · 2.65 KB
/
PBImg.h
File metadata and controls
111 lines (108 loc) · 2.65 KB
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
/* Copyright (C) 2011 Yury P. Fedorchenko (yuryfdr at users.sf.net) */
/*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
//struct ibitmap_s;
//typedef struct ibitmap_s ibitmap;
#include <boost/shared_ptr.hpp>
#include <inkview.h>
/**
base class for different images format
*/
class PBImage {
protected:
int width,height,depth;
const unsigned char* array;
public:
int h()const{return height;} //< height of the image
int w()const{return width;} //< width of the image
int d()const{return depth;} //< bity color depth
PBImage():array(NULL){}
virtual ~PBImage(){
if(array)delete[] array;
}
/**
draw scaled image
*/
virtual void draw(int x,int y,int w,int h,bool save_aspect=false);
/**
draw image
*/
void draw(int x,int y){
draw(x,y,width,height);
}
/** create image from file
create corresponding image from file
*/
static PBImage* createFromFile(const char* fname);
};
/**
png image
*/
class PBPNGImage : public PBImage {
void load_png_(const char* fname);
public:
PBPNGImage(const char* fname);
};
/**
gif image
*/
class PBGIFImage : public PBImage {
void load_png_(const char* fname);
public:
PBGIFImage(const char* fname);
};
/**
ibitmap image
ibitmap image is the single image that cannot be created from file.
*/
class PBIbitmapImage : public PBImage {
ibitmap* bm;
public:
virtual void draw(int x,int y,int w,int h,bool save_aspect=false);
void draw(int x,int y){
draw(x,y,width,height);
}
/**
create
*/
PBIbitmapImage(ibitmap* bmp){
bm = bmp;
width = bm->width;
height = bm->height;
depth = bm->depth;
}
~PBIbitmapImage(){}
};
/**
bmp image
*/
class PBBMPImage : public PBImage {
ibitmap* bm;
public:
virtual void draw(int x,int y,int w,int h,bool save_aspect=false);
void draw(int x,int y){
draw(x,y,width,height);
}
PBBMPImage(const char* fname);
~PBBMPImage(){free(bm);}
};
/**
jpeg image
*/
class PBJPEGImage : public PBImage {
public:
PBJPEGImage(const char* fname);
};