| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717 |
- /*
- * Copyright 2011-2017 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
- */
- #include <stdio.h>
- #include <bx/allocator.h>
- #include <bx/readerwriter.h>
- #include <bx/endian.h>
- #include <bimg/decode.h>
- #include <bimg/encode.h>
- #if 0
- # define DBG(_format, ...) fprintf(stderr, "" _format "\n", ##__VA_ARGS__)
- #else
- # define DBG(...) BX_NOOP()
- #endif // DEBUG
- #include <bx/bx.h>
- #include <bx/commandline.h>
- #include <bx/crtimpl.h>
- #include <bx/uint32_t.h>
- #include <string>
- #define BIMG_TEXTUREC_VERSION_MAJOR 1
- #define BIMG_TEXTUREC_VERSION_MINOR 3
- struct Options
- {
- Options()
- : maxSize(UINT32_MAX)
- , edge(0.0f)
- , format(bimg::TextureFormat::Count)
- , quality(bimg::Quality::Default)
- , mips(false)
- , normalMap(false)
- , iqa(false)
- , sdf(false)
- , alphaTest(false)
- {
- }
- void dump()
- {
- DBG("Options:\n"
- "\t maxSize: %d\n"
- "\t edge: %f\n"
- "\t format: %s\n"
- "\t mips: %s\n"
- "\tnormalMap: %s\n"
- "\t iqa: %s\n"
- "\t sdf: %s\n"
- , maxSize
- , edge
- , bimg::getName(format)
- , mips ? "true" : "false"
- , normalMap ? "true" : "false"
- , iqa ? "true" : "false"
- , sdf ? "true" : "false"
- );
- }
- uint32_t maxSize;
- float edge;
- bimg::TextureFormat::Enum format;
- bimg::Quality::Enum quality;
- bool mips;
- bool normalMap;
- bool iqa;
- bool sdf;
- bool alphaTest;
- };
- bimg::ImageContainer* convert(bx::AllocatorI* _allocator, const void* _inputData, uint32_t _inputSize, const Options& _options, bx::Error* _err)
- {
- BX_ERROR_SCOPE(_err);
- const uint8_t* inputData = (uint8_t*)_inputData;
- bimg::ImageContainer* output = NULL;
- bimg::ImageContainer* input = bimg::imageParse(_allocator, inputData, _inputSize);
- if (NULL != input)
- {
- const bimg::TextureFormat::Enum inputFormat = input->m_format;
- bimg::TextureFormat::Enum outputFormat = input->m_format;
- if (bimg::TextureFormat::Count != _options.format)
- {
- outputFormat = _options.format;
- }
- const bimg::ImageBlockInfo& inputBlockInfo = bimg::getBlockInfo(inputFormat);
- const bimg::ImageBlockInfo& outputBlockInfo = bimg::getBlockInfo(outputFormat);
- const uint32_t blockWidth = outputBlockInfo.blockWidth;
- const uint32_t blockHeight = outputBlockInfo.blockHeight;
- const uint32_t minBlockX = outputBlockInfo.minBlockX;
- const uint32_t minBlockY = outputBlockInfo.minBlockY;
- uint32_t outputWidth = bx::uint32_max(blockWidth * minBlockX, ( (input->m_width + blockWidth - 1) / blockWidth )*blockWidth);
- uint32_t outputHeight = bx::uint32_max(blockHeight * minBlockY, ( (input->m_height + blockHeight - 1) / blockHeight)*blockHeight);
- if (outputWidth > _options.maxSize
- || outputHeight > _options.maxSize)
- {
- if (outputWidth > outputHeight)
- {
- outputHeight = outputHeight * _options.maxSize / outputWidth;
- outputWidth = _options.maxSize;
- }
- else
- {
- outputWidth = outputWidth * _options.maxSize / outputHeight;
- outputHeight = _options.maxSize;
- }
- }
- const bool needResize = false
- || input->m_width != outputWidth
- || input->m_height != outputHeight
- ;
- const bool passThru = true
- && inputFormat == outputFormat
- && !needResize
- && (1 < input->m_numMips) == _options.mips
- && !_options.sdf
- && !_options.alphaTest
- && !_options.normalMap
- && !_options.iqa
- ;
- if (needResize)
- {
- bimg::ImageContainer* src = bimg::imageConvert(_allocator, bimg::TextureFormat::RGBA32F, *input);
- bimg::ImageContainer* dst = bimg::imageAlloc(
- _allocator
- , bimg::TextureFormat::RGBA32F
- , uint16_t(outputWidth)
- , uint16_t(outputHeight)
- , 1
- , input->m_numLayers
- , input->m_cubeMap
- , false
- );
- bimg::imageResizeRgba32fLinear(dst, src);
- bimg::imageFree(src);
- bimg::imageFree(input);
- input = bimg::imageConvert(_allocator, inputFormat, *dst);
- bimg::imageFree(dst);
- }
- if (passThru)
- {
- output = bimg::imageConvert(_allocator, outputFormat, *input);
- bimg::imageFree(input);
- return output;
- }
- output = bimg::imageAlloc(
- _allocator
- , outputFormat
- , uint16_t(input->m_width)
- , uint16_t(input->m_height)
- , uint16_t(input->m_depth)
- , input->m_numLayers
- , input->m_cubeMap
- , _options.mips
- );
- const uint8_t numMips = output->m_numMips;
- const uint16_t numSides = output->m_numLayers * (output->m_cubeMap ? 6 : 1);
- for (uint16_t side = 0; side < numSides && _err->isOk(); ++side)
- {
- bimg::ImageMip mip;
- if (bimg::imageGetRawData(*input, side, 0, input->m_data, input->m_size, mip) )
- {
- bimg::ImageMip dstMip;
- bimg::imageGetRawData(*output, side, 0, output->m_data, output->m_size, dstMip);
- uint8_t* dstData = const_cast<uint8_t*>(dstMip.m_data);
- void* temp = NULL;
- if (_options.normalMap)
- {
- uint32_t size = bimg::imageGetSize(
- NULL
- , uint16_t(dstMip.m_width)
- , uint16_t(dstMip.m_height)
- , 0
- , false
- , false
- , 1
- , bimg::TextureFormat::RGBA32F
- );
- temp = BX_ALLOC(_allocator, size);
- float* rgba = (float*)temp;
- float* rgbaDst = (float*)BX_ALLOC(_allocator, size);
- bimg::imageDecodeToRgba32f(_allocator
- , rgba
- , mip.m_data
- , dstMip.m_width
- , dstMip.m_height
- , dstMip.m_width*16
- , mip.m_format
- );
- if (bimg::TextureFormat::BC5 != mip.m_format)
- {
- for (uint32_t yy = 0; yy < mip.m_height; ++yy)
- {
- for (uint32_t xx = 0; xx < mip.m_width; ++xx)
- {
- const uint32_t offset = (yy*mip.m_width + xx) * 4;
- float* inout = &rgba[offset];
- inout[0] = inout[0] * 2.0f - 1.0f;
- inout[1] = inout[1] * 2.0f - 1.0f;
- inout[2] = inout[2] * 2.0f - 1.0f;
- inout[3] = inout[3] * 2.0f - 1.0f;
- }
- }
- }
- bimg::imageRgba32f11to01(rgbaDst
- , dstMip.m_width
- , dstMip.m_height
- , dstMip.m_width*16
- , rgba
- );
- bimg::imageEncodeFromRgba32f(_allocator
- , dstData
- , rgbaDst
- , dstMip.m_width
- , dstMip.m_height
- , outputFormat
- , _options.quality
- , _err
- );
- for (uint8_t lod = 1; lod < numMips && _err->isOk(); ++lod)
- {
- bimg::imageRgba32fDownsample2x2NormalMap(rgba
- , dstMip.m_width
- , dstMip.m_height
- , dstMip.m_width*16
- , rgba
- );
- bimg::imageRgba32f11to01(rgbaDst
- , dstMip.m_width
- , dstMip.m_height
- , dstMip.m_width*16
- , rgba
- );
- bimg::imageGetRawData(*output, side, lod, output->m_data, output->m_size, dstMip);
- dstData = const_cast<uint8_t*>(dstMip.m_data);
- bimg::imageEncodeFromRgba32f(_allocator
- , dstData
- , rgbaDst
- , dstMip.m_width
- , dstMip.m_height
- , outputFormat
- , _options.quality
- , _err
- );
- }
- BX_FREE(_allocator, rgbaDst);
- }
- else if (!bimg::isCompressed(input->m_format)
- && 8 != inputBlockInfo.rBits)
- {
- uint32_t size = bimg::imageGetSize(
- NULL
- , uint16_t(dstMip.m_width)
- , uint16_t(dstMip.m_height)
- , 0
- , false
- , false
- , 1
- , bimg::TextureFormat::RGBA32F
- );
- temp = BX_ALLOC(_allocator, size);
- float* rgba32f = (float*)temp;
- float* rgbaDst = (float*)BX_ALLOC(_allocator, size);
- bimg::imageDecodeToRgba32f(_allocator
- , rgba32f
- , mip.m_data
- , mip.m_width
- , mip.m_height
- , mip.m_width*16
- , mip.m_format
- );
- bimg::imageEncodeFromRgba32f(_allocator
- , dstData
- , rgba32f
- , dstMip.m_width
- , dstMip.m_height
- , outputFormat
- , _options.quality
- , _err
- );
- if (1 < numMips
- && _err->isOk() )
- {
- bimg::imageRgba32fToLinear(rgba32f
- , mip.m_width
- , mip.m_height
- , mip.m_width*16
- , rgba32f
- );
- for (uint8_t lod = 1; lod < numMips && _err->isOk(); ++lod)
- {
- bimg::imageRgba32fLinearDownsample2x2(rgba32f
- , dstMip.m_width
- , dstMip.m_height
- , dstMip.m_width*16
- , rgba32f
- );
- bimg::imageGetRawData(*output, side, lod, output->m_data, output->m_size, dstMip);
- dstData = const_cast<uint8_t*>(dstMip.m_data);
- bimg::imageRgba32fToGamma(rgbaDst
- , mip.m_width
- , mip.m_height
- , mip.m_width*16
- , rgba32f
- );
- bimg::imageEncodeFromRgba32f(_allocator
- , dstData
- , rgbaDst
- , dstMip.m_width
- , dstMip.m_height
- , outputFormat
- , _options.quality
- , _err
- );
- }
- }
- BX_FREE(_allocator, rgbaDst);
- }
- else
- {
- uint32_t size = bimg::imageGetSize(
- NULL
- , uint16_t(dstMip.m_width)
- , uint16_t(dstMip.m_height)
- , 0
- , false
- , false
- , 1
- , bimg::TextureFormat::RGBA8
- );
- temp = BX_ALLOC(_allocator, size);
- uint8_t* rgba = (uint8_t*)temp;
- bimg::imageDecodeToRgba8(rgba
- , mip.m_data
- , mip.m_width
- , mip.m_height
- , mip.m_width*4
- , mip.m_format
- );
- float coverage = 0.0f;
- if (_options.alphaTest)
- {
- coverage = bimg::imageAlphaTestCoverage(bimg::TextureFormat::RGBA8
- , mip.m_width
- , mip.m_height
- , mip.m_width*4
- , rgba
- , _options.edge
- );
- }
- void* ref = NULL;
- if (_options.iqa)
- {
- ref = BX_ALLOC(_allocator, size);
- bx::memCopy(ref, rgba, size);
- }
- bimg::imageGetRawData(*output, side, 0, output->m_data, output->m_size, dstMip);
- dstData = const_cast<uint8_t*>(dstMip.m_data);
- bimg::imageEncodeFromRgba8(dstData
- , rgba
- , dstMip.m_width
- , dstMip.m_height
- , outputFormat
- , _options.quality
- , _err
- );
- for (uint8_t lod = 1; lod < numMips && _err->isOk(); ++lod)
- {
- bimg::imageRgba8Downsample2x2(rgba
- , dstMip.m_width
- , dstMip.m_height
- , dstMip.m_width*4
- , rgba
- );
- if (_options.alphaTest)
- {
- bimg::imageScaleAlphaToCoverage(bimg::TextureFormat::RGBA8
- , dstMip.m_width
- , dstMip.m_height
- , dstMip.m_width*4
- , rgba
- , coverage
- , _options.edge
- );
- }
- bimg::imageGetRawData(*output, side, lod, output->m_data, output->m_size, dstMip);
- dstData = const_cast<uint8_t*>(dstMip.m_data);
- bimg::imageEncodeFromRgba8(dstData
- , rgba
- , dstMip.m_width
- , dstMip.m_height
- , outputFormat
- , _options.quality
- , _err
- );
- }
- if (NULL != ref)
- {
- bimg::imageDecodeToRgba8(rgba
- , output->m_data
- , mip.m_width
- , mip.m_height
- , mip.m_width*mip.m_bpp/8
- , outputFormat
- );
- float result = bimg::imageQualityRgba8(
- ref
- , rgba
- , uint16_t(mip.m_width)
- , uint16_t(mip.m_height)
- );
- printf("%f\n", result);
- BX_FREE(_allocator, ref);
- }
- }
- BX_FREE(_allocator, temp);
- }
- }
- bimg::imageFree(input);
- }
- if (!_err->isOk()
- && NULL != output)
- {
- bimg::imageFree(output);
- output = NULL;
- }
- return output;
- }
- void help(const char* _error = NULL, bool _showHelp = true)
- {
- if (NULL != _error)
- {
- fprintf(stderr, "Error:\n%s\n\n", _error);
- if (!_showHelp)
- {
- return;
- }
- }
- fprintf(stderr
- , "texturec, bgfx texture compiler tool, version %d.%d.%d.\n"
- "Copyright 2011-2017 Branimir Karadzic. All rights reserved.\n"
- "License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause\n\n"
- , BIMG_TEXTUREC_VERSION_MAJOR
- , BIMG_TEXTUREC_VERSION_MINOR
- , BIMG_API_VERSION
- );
- fprintf(stderr
- , "Usage: texturec -f <in> -o <out> [-t <format>]\n"
- "\n"
- "Supported input file types:\n"
- " *.png Portable Network Graphics\n"
- " *.tga Targa\n"
- " *.dds Direct Draw Surface\n"
- " *.ktx Khronos Texture\n"
- " *.pvr PowerVR\n"
- "\n"
- "Options:\n"
- " -h, --help Help.\n"
- " -v, --version Version information only.\n"
- " -f <file path> Input file path.\n"
- " -o <file path> Output file path (file will be written in KTX format).\n"
- " -t <format> Output format type (BC1/2/3/4/5, ETC1, PVR14, etc.).\n"
- " -q <quality> Encoding quality (default, fastest, highest).\n"
- " -m, --mips Generate mip-maps.\n"
- " -n, --normalmap Input texture is normal map.\n"
- " --sdf <edge> Compute SDF texture.\n"
- " --ref <alpha> Alpha reference value.\n"
- " --iqa Image Quality Assessment\n"
- " --max <max size> Maximum width/height (image will be scaled down and\n"
- " aspect ratio will be preserved.\n"
- " --as <extension> Save as.\n"
- "\n"
- "For additional information, see https://github.com/bkaradzic/bgfx\n"
- );
- }
- void help(const char* _str, const bx::Error& _err)
- {
- std::string str;
- if (_str != NULL)
- {
- str.append(_str);
- str.append(" ");
- }
- const bx::StringView& sv = _err.getMessage();
- str.append(sv.getPtr(), sv.getTerm() - sv.getPtr() );
- help(str.c_str(), false);
- }
- int main(int _argc, const char* _argv[])
- {
- bx::CommandLine cmdLine(_argc, _argv);
- if (cmdLine.hasArg('v', "version") )
- {
- fprintf(stderr
- , "texturec, bgfx texture compiler tool, version %d.%d.%d.\n"
- , BIMG_TEXTUREC_VERSION_MAJOR
- , BIMG_TEXTUREC_VERSION_MINOR
- , BIMG_API_VERSION
- );
- return EXIT_SUCCESS;
- }
- if (cmdLine.hasArg('h', "help") )
- {
- help();
- return EXIT_FAILURE;
- }
- const char* inputFileName = cmdLine.findOption('f');
- if (NULL == inputFileName)
- {
- help("Input file must be specified.");
- return EXIT_FAILURE;
- }
- const char* outputFileName = cmdLine.findOption('o');
- if (NULL == outputFileName)
- {
- help("Output file must be specified.");
- return EXIT_FAILURE;
- }
- const char* saveAs = cmdLine.findOption("as");
- saveAs = NULL == saveAs ? bx::strFindI(outputFileName, ".ktx") : saveAs;
- saveAs = NULL == saveAs ? bx::strFindI(outputFileName, ".dds") : saveAs;
- if (NULL == saveAs)
- {
- help("Output file format must be specified.");
- return EXIT_FAILURE;
- }
- Options options;
- const char* edgeOpt = cmdLine.findOption("sdf");
- if (NULL != edgeOpt)
- {
- options.sdf = true;
- options.edge = (float)atof(edgeOpt);
- }
- else
- {
- const char* alphaRef = cmdLine.findOption("ref");
- if (NULL != alphaRef)
- {
- options.alphaTest = true;
- options.edge = (float)atof(alphaRef);
- }
- }
- options.mips = cmdLine.hasArg('m', "mips");
- options.normalMap = cmdLine.hasArg('n', "normalmap");
- options.iqa = cmdLine.hasArg('\0', "iqa");
- const char* maxSize = cmdLine.findOption("max");
- if (NULL != maxSize)
- {
- options.maxSize = atoi(maxSize);
- }
- options.format = bimg::TextureFormat::Count;
- const char* type = cmdLine.findOption('t');
- if (NULL != type)
- {
- options.format = bimg::getFormat(type);
- if (!bimg::isValid(options.format) )
- {
- help("Invalid format specified.");
- return EXIT_FAILURE;
- }
- }
- const char* quality = cmdLine.findOption('q');
- if (NULL != quality)
- {
- switch (bx::toLower(quality[0]) )
- {
- case 'h': options.quality = bimg::Quality::Highest; break;
- case 'f': options.quality = bimg::Quality::Fastest; break;
- case 'd': options.quality = bimg::Quality::Default; break;
- default:
- help("Invalid quality specified.");
- return EXIT_FAILURE;
- }
- }
- bx::Error err;
- bx::CrtFileReader reader;
- if (!bx::open(&reader, inputFileName, &err) )
- {
- help("Failed to open input file.", err);
- return EXIT_FAILURE;
- }
- bx::CrtAllocator allocator;
- uint32_t inputSize = (uint32_t)bx::getSize(&reader);
- uint8_t* inputData = (uint8_t*)BX_ALLOC(&allocator, inputSize);
- bx::read(&reader, inputData, inputSize, &err);
- bx::close(&reader);
- if (!err.isOk() )
- {
- help("Failed to read input file.", err);
- return EXIT_FAILURE;
- }
- bimg::ImageContainer* output = convert(&allocator, inputData, inputSize, options, &err);
- BX_FREE(&allocator, inputData);
- if (NULL != output)
- {
- bx::CrtFileWriter writer;
- if (bx::open(&writer, outputFileName, false, &err) )
- {
- if (NULL != bx::strFindI(saveAs, "ktx") )
- {
- bimg::imageWriteKtx(&writer, *output, output->m_data, output->m_size, &err);
- }
- else if (NULL != bx::strFindI(saveAs, "dds") )
- {
- bimg::imageWriteDds(&writer, *output, output->m_data, output->m_size, &err);
- }
- bx::close(&writer);
- if (!err.isOk() )
- {
- help(NULL, err);
- return EXIT_FAILURE;
- }
- }
- else
- {
- help("Failed to open output file.", err);
- return EXIT_FAILURE;
- }
- bimg::imageFree(output);
- }
- else
- {
- help(NULL, err);
- return EXIT_FAILURE;
- }
- return EXIT_SUCCESS;
- }
|