|
@@ -34,62 +34,7 @@ void ImageScrambler::cropSwap(QImage &img, int x0, int y0, int x1, int y1, int w
|
34
|
34
|
|
35
|
35
|
|
36
|
36
|
QImage ImageScrambler::ScrambleFilter(QImage image, int level, int sx, int sy, int width, int height){
|
37
|
|
-
|
38
|
|
-
|
39
|
|
-
|
40
|
|
- int w = width / 2;
|
41
|
|
- int h = height / 2;
|
42
|
|
-
|
43
|
|
-
|
44
|
|
-
|
45
|
|
- if ( level > 0 ) {
|
46
|
|
-
|
47
|
|
- if ( level % 2 ) {
|
48
|
|
-
|
49
|
|
-
|
50
|
|
-
|
51
|
|
-
|
52
|
|
-
|
53
|
|
-
|
54
|
|
-
|
55
|
|
-
|
56
|
|
-
|
57
|
|
-
|
58
|
|
-
|
59
|
|
-
|
60
|
|
-
|
61
|
|
-
|
62
|
|
-
|
63
|
|
-
|
64
|
|
- cropSwap(image, sx, sy, sx + w, sy + h, w, h);
|
65
|
|
- cropSwap(image, sx + w , sy, sx , sy + h, w, h);
|
66
|
|
- }
|
67
|
|
- else
|
68
|
|
-
|
69
|
|
-
|
70
|
|
-
|
71
|
|
-
|
72
|
|
-
|
73
|
|
-
|
74
|
|
-
|
75
|
|
-
|
76
|
|
-
|
77
|
|
-
|
78
|
|
-
|
79
|
|
-
|
80
|
|
-
|
81
|
|
-
|
82
|
|
-
|
83
|
|
- cropSwap(image, sx, sy, sx + w, sy, w, height);
|
84
|
|
-
|
85
|
|
-
|
86
|
|
-
|
87
|
|
-
|
88
|
|
- image = ScrambleFilter(image, level-1, sx, sy , w, h);
|
89
|
|
- image = ScrambleFilter(image, level-1, sx + w, sy , w, h);
|
90
|
|
- image = ScrambleFilter(image, level-1, sx , sy + h, w, h);
|
91
|
|
- image = ScrambleFilter(image, level-1, sx + w, sy + h, w, h);
|
92
|
|
- }
|
|
37
|
+
|
93
|
38
|
return image;
|
94
|
39
|
}
|
95
|
40
|
|