26int main(
int argc,
char** argv)
28 Console::println(
string(
"imageprocessor ") + Version::getVersion());
29 Console::println(Version::getCopyright());
34 Console::println(
"Usage: imageprocessor input.png output.png");
39 auto inputImageFileName = string(argv[1]);
40 auto outputImageFileName = string(argv[2]);
44 Console::println(
"Loading image: " + inputImageFileName);
45 auto image = TextureReader::read(
46 FileSystem::getInstance()->getPathName(inputImageFileName),
47 FileSystem::getInstance()->getFileName(inputImageFileName)
51 Console::println(
"Processing image");
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;
64 if (red < 5 && green < 5 && blue < 5) {
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;
83 auto smoothedTexture = TextureReader::smooth(image);
84 image->releaseReference();
85 image = smoothedTexture;
88 Console::println(
"Saving image: " + outputImageFileName);
89 PNGTextureWriter::write(
91 FileSystem::getInstance()->getPathName(outputImageFileName),
92 FileSystem::getInstance()->getFileName(outputImageFileName),
97 Console::println(
"An error occurred: " +
string(exception.what()));
Application base class, please make sure to allocate application on heap to have correct application ...
PNG texture writer class.
File system singleton class.
int main(int argc, char **argv)
std::exception Exception
Exception base class.