TDME2 1.9.121
imageprocessor-main.cpp
Go to the documentation of this file.
1#include <string>
2
3#include <tdme/tdme.h>
13
14using std::string;
15
25
26int main(int argc, char** argv)
27{
28 Console::println(string("imageprocessor ") + Version::getVersion());
29 Console::println(Version::getCopyright());
30 Console::println();
31
32 //
33 if (argc != 3) {
34 Console::println("Usage: imageprocessor input.png output.png");
35 Application::exit(1);
36 }
37
38 //
39 auto inputImageFileName = string(argv[1]);
40 auto outputImageFileName = string(argv[2]);
41
42 //
43 try {
44 Console::println("Loading image: " + inputImageFileName);
45 auto image = TextureReader::read(
46 FileSystem::getInstance()->getPathName(inputImageFileName),
47 FileSystem::getInstance()->getFileName(inputImageFileName)
48 );
49
50 //
51 Console::println("Processing image");
52
53 // for now: do black pixel -> transparent pixels, every other pixel gets white
54 // later we can provide color transform matrices with preset matrices
55 auto bytesPerPixel = image->getDepth() / 8;
56 for (auto y = 0; y < image->getTextureHeight(); y++) {
57 for (auto x = 0; x < image->getTextureWidth(); x++) {
58 auto offset = y * bytesPerPixel * image->getTextureWidth() + x * bytesPerPixel;
59 auto red = image->getTextureData()->get(offset + 0);
60 auto green = image->getTextureData()->get(offset + 1);
61 auto blue = image->getTextureData()->get(offset + 2);
62 auto alpha = bytesPerPixel == 4?image->getTextureData()->get(offset + 3):0xff;
63 // transform black pixels to transparent pixels
64 if (red < 5 && green < 5 && blue < 5) {
65 alpha = 0;
66 } else {
67 // everything else should be white
68 red = 0xff;
69 green = 0xff;
70 blue = 0xff;
71 }
72 image->getTextureData()->getBuffer()[offset + 0] = red;
73 image->getTextureData()->getBuffer()[offset + 1] = green;
74 image->getTextureData()->getBuffer()[offset + 2] = blue;
75 if (bytesPerPixel == 4) {
76 image->getTextureData()->getBuffer()[offset + 3] = alpha;
77 }
78
79 }
80 }
81
82 // smooth
83 auto smoothedTexture = TextureReader::smooth(image);
84 image->releaseReference();
85 image = smoothedTexture;
86
87 //
88 Console::println("Saving image: " + outputImageFileName);
89 PNGTextureWriter::write(
90 image,
91 FileSystem::getInstance()->getPathName(outputImageFileName),
92 FileSystem::getInstance()->getFileName(outputImageFileName),
93 false,
94 false
95 );
96 } catch (Exception& exception) {
97 Console::println("An error occurred: " + string(exception.what()));
98 }
99}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
File system singleton class.
Definition: FileSystem.h:14
Console class.
Definition: Console.h:26
int main(int argc, char **argv)
std::exception Exception
Exception base class.
Definition: Exception.h:19