-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathshifty.cpp
55 lines (48 loc) · 1.32 KB
/
shifty.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
#include <Magick++.h>
#include <iostream>
#include <sstream>
#include <cassert>
using std::cout;
using std::string;
using namespace Magick;
Quantum shiftQuantum(Quantum q)
{
q = (q & 0xFF) << 1;
#if QuantumDepth == 16
q = (q << 8) | q;
#endif
return q;
}
int main(int argc, char** argv)
{
InitializeMagick(*argv);
if(argc != 3) {
cout << "Usage: " << argv[0] << " input.png out\n"
<< "Output files will be named out0.png, out1.png, etc.\n";
exit(1);
}
const string samplePath = argv[1];
const string outputPath = argv[2];
cout << "Loading " << samplePath << '\n';
Image im (samplePath);
Geometry g = im.size();
cout << "Dimensions are " << (string)g << '\n';
cout << "Depth is " << im.depth() << '\n';
assert(im.type() == TrueColorType);
for(unsigned i = 0; i <= 8; i++) {
std::ostringstream filePath;
filePath << outputPath << i << ".png";
cout << "Writing " << filePath.str() << '\n';
im.write(filePath.str());
for(unsigned x = 0; x < g.width(); x++) {
for(unsigned y = 0; y < g.height(); y++) {
Color c = im.pixelColor(x, y);
c.redQuantum(shiftQuantum(c.redQuantum()));
c.greenQuantum(shiftQuantum(c.greenQuantum()));
c.blueQuantum(shiftQuantum(c.blueQuantum()));
im.pixelColor(x, y, c);
}
}
}
return 0;
}