-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColorData.cpp
executable file
·64 lines (59 loc) · 1.16 KB
/
ColorData.cpp
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
#include "ColorData.h"
ColorData::ColorData(){
width = 0;
height = 0;
colorData = NULL;
}
ColorData::~ColorData(){
if(colorData!=NULL){
delete colorData;
colorData = NULL;
}
}
bool ColorData::allocPixels(){
if(width<=0||height<=0){
return false;
}
if(colorData==NULL){
colorData = ( int*)malloc(width*height*sizeof(int));
if(colorData==NULL){
return false;
}else{
return true;
}
}
return true;
}
void ColorData::eraseColor( int color){
if(colorData==NULL){
return;
}
int* temp = colorData;
for(int i=0;i<width*height;i++,temp++){
*temp = color;
}
}
int* ColorData::getColorData(){
return colorData;
}
void ColorData::swap(ColorData& other){
// if(this->width<=0||this->height<=0||other.width<=0||other.height<=0||this->width){
//
// }
//LOGI("Gif swap.....");
}
int* ColorData::getColorData(int x,int y){
return (colorData + y * width + x);
}
int ColorData::getWidth(){
return this->width;
}
int ColorData::getHeight(){
return this->height;
}
void ColorData::setWidth(int _width){
this->width = _width;
}
void ColorData::setHeight(int _height){
this->height = _height;
}