-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMirror.cpp
43 lines (38 loc) · 1.09 KB
/
Mirror.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
/*
* @brief 暠獗섯부긴뻣
* @author 喬넴堵 3140100333
* @date 2017-04-19
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "Mirror.h"
#define BITMAP_ID 0x4D42
unsigned char* mirror(BITMAPFILEHEADER *bitmapFileHeader, BITMAPINFOHEADER *bitmapInfoHeader, unsigned char *bitmapData, int sx, int sy)
{
unsigned char* newbitmapData = new unsigned char[bitmapInfoHeader->biSizeImage];
int m = bitmapInfoHeader->biHeight;
int n = (bitmapInfoHeader->biWidth + 3) / 4 * 4 * 3;
if (sx == 1) // x菉隣쓸獗긴뻣
{
for (int i = 0; i < m; i++)
for (int j = 0; j < n; j += 3)
{
int x = m - i - 1, y = j;
newbitmapData[i*n + j] = bitmapData[x*n + y];
newbitmapData[i*n + j+1] = bitmapData[x*n + y+1];
newbitmapData[i*n + j+2] = bitmapData[x*n + y+2];
}
}
else { // y菉隣쓸獗긴뻣
for (int i = 0; i < m; i++)
for (int j = 0; j < n; j += 3)
{
int x = i, y = n - 3 - j;
newbitmapData[i*n + j] = bitmapData[x*n + y];
newbitmapData[i*n + j + 1] = bitmapData[x*n + y + 1];
newbitmapData[i*n + j + 2] = bitmapData[x*n + y + 2];
}
}
return newbitmapData;
}