mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
9c46b75138
Also add support for loading uint exr image files, and fix a memory leak in the exr loading code. Resolves #1813.
276 lines
7.1 KiB
C++
276 lines
7.1 KiB
C++
/**
|
|
* Copyright (c) 2006-2022 LOVE Development Team
|
|
*
|
|
* This software is provided 'as-is', without any express or implied
|
|
* warranty. In no event will the authors be held liable for any damages
|
|
* arising from the use of this software.
|
|
*
|
|
* Permission is granted to anyone to use this software for any purpose,
|
|
* including commercial applications, and to alter it and redistribute it
|
|
* freely, subject to the following restrictions:
|
|
*
|
|
* 1. The origin of this software must not be misrepresented; you must not
|
|
* claim that you wrote the original software. If you use this software
|
|
* in a product, an acknowledgment in the product documentation would be
|
|
* appreciated but is not required.
|
|
* 2. Altered source versions must be plainly marked as such, and must not be
|
|
* misrepresented as being the original software.
|
|
* 3. This notice may not be removed or altered from any source distribution.
|
|
**/
|
|
|
|
#include "PNGHandler.h"
|
|
|
|
// LOVE
|
|
#include "common/Exception.h"
|
|
#include "common/math.h"
|
|
|
|
// LodePNG
|
|
#include "lodepng/lodepng.h"
|
|
|
|
// zlib
|
|
#include <zlib.h>
|
|
|
|
// C++
|
|
#include <algorithm>
|
|
|
|
// C
|
|
#include <cstdlib>
|
|
|
|
namespace love
|
|
{
|
|
namespace image
|
|
{
|
|
namespace magpie
|
|
{
|
|
|
|
// Custom PNG decompression function for LodePNG, using zlib.
|
|
static unsigned zlibDecompress(unsigned char **out, size_t *outsize, const unsigned char *in,
|
|
size_t insize, const LodePNGDecompressSettings* /*settings*/)
|
|
{
|
|
int status = Z_OK;
|
|
|
|
uLongf outdatasize = insize;
|
|
size_t sizemultiplier = 0;
|
|
unsigned char *outdata = out != nullptr ? *out : nullptr;
|
|
|
|
while (true)
|
|
{
|
|
// Enough size to hold the decompressed data, hopefully.
|
|
outdatasize = insize << (++sizemultiplier);
|
|
|
|
// LodePNG uses malloc, realloc, and free.
|
|
// Since version 2014-08-23, LodePNG passes in an existing pointer in
|
|
// the 'out' argument that it expects to be realloc'd. Not doing so can
|
|
// result in a memory leak.
|
|
if (outdata != nullptr)
|
|
outdata = (unsigned char *) realloc(outdata, outdatasize);
|
|
else
|
|
outdata = (unsigned char *) malloc(outdatasize);
|
|
|
|
if (!outdata)
|
|
return 83; // "Memory allocation failed" error code for LodePNG.
|
|
|
|
// Use zlib to decompress the PNG data.
|
|
status = uncompress(outdata, &outdatasize, in, insize);
|
|
|
|
// If the out buffer was big enough, break out of the loop.
|
|
if (status != Z_BUF_ERROR)
|
|
break;
|
|
|
|
// Otherwise delete the out buffer and try again with a larger size...
|
|
free(outdata);
|
|
outdata = nullptr;
|
|
}
|
|
|
|
if (status != Z_OK)
|
|
{
|
|
free(outdata);
|
|
return 10000; // "Unknown error code" for LodePNG.
|
|
}
|
|
|
|
if (out != nullptr)
|
|
*out = outdata;
|
|
|
|
if (outsize != nullptr)
|
|
*outsize = outdatasize;
|
|
|
|
return 0; // Success.
|
|
}
|
|
|
|
// Custom PNG compression function for LodePNG, using zlib.
|
|
static unsigned zlibCompress(unsigned char **out, size_t *outsize, const unsigned char *in,
|
|
size_t insize, const LodePNGCompressSettings* /*settings*/)
|
|
{
|
|
// Get the maximum compressed size of the data.
|
|
uLongf outdatasize = compressBound(insize);
|
|
|
|
// LodePNG uses malloc, realloc, and free.
|
|
unsigned char *outdata = (unsigned char *) malloc(outdatasize);
|
|
|
|
if (!outdata)
|
|
return 83; // "Memory allocation failed" error code for LodePNG.
|
|
|
|
// Use zlib to compress the PNG data.
|
|
int status = compress(outdata, &outdatasize, in, insize);
|
|
|
|
if (status != Z_OK)
|
|
{
|
|
free(outdata);
|
|
return 10000; // "Unknown error code" for LodePNG.
|
|
}
|
|
|
|
if (out != nullptr)
|
|
*out = outdata;
|
|
|
|
if (outsize != nullptr)
|
|
*outsize = (size_t) outdatasize;
|
|
|
|
return 0; // Success.
|
|
}
|
|
|
|
bool PNGHandler::canDecode(Data *data)
|
|
{
|
|
unsigned int width = 0, height = 0;
|
|
unsigned char *indata = (unsigned char *) data->getData();
|
|
size_t insize = data->getSize();
|
|
|
|
lodepng::State state;
|
|
unsigned status = lodepng_inspect(&width, &height, &state, indata, insize);
|
|
|
|
return status == 0 && width > 0 && height > 0;
|
|
}
|
|
|
|
bool PNGHandler::canEncode(PixelFormat rawFormat, EncodedFormat encodedFormat)
|
|
{
|
|
return encodedFormat == ENCODED_PNG
|
|
&& (rawFormat == PIXELFORMAT_RGBA8_UNORM || rawFormat == PIXELFORMAT_RGBA16_UNORM);
|
|
}
|
|
|
|
PNGHandler::DecodedImage PNGHandler::decode(Data *fdata)
|
|
{
|
|
unsigned int width = 0, height = 0;
|
|
unsigned char *indata = (unsigned char *) fdata->getData();
|
|
size_t insize = fdata->getSize();
|
|
|
|
DecodedImage img;
|
|
|
|
lodepng::State state;
|
|
unsigned status = lodepng_inspect(&width, &height, &state, indata, insize);
|
|
|
|
if (status != 0)
|
|
{
|
|
const char *err = lodepng_error_text(status);
|
|
throw love::Exception("Could not decode PNG image (%s)", err);
|
|
}
|
|
|
|
state.decoder.zlibsettings.custom_zlib = zlibDecompress;
|
|
state.info_raw.colortype = LCT_RGBA;
|
|
|
|
if (state.info_png.color.bitdepth == 16)
|
|
state.info_raw.bitdepth = 16;
|
|
else
|
|
state.info_raw.bitdepth = 8;
|
|
|
|
status = lodepng_decode(&img.data, &width, &height, &state, indata, insize);
|
|
|
|
if (status != 0)
|
|
{
|
|
const char *err = lodepng_error_text(status);
|
|
throw love::Exception("Could not decode PNG image (%s)", err);
|
|
}
|
|
|
|
img.width = (int) width;
|
|
img.height = (int) height;
|
|
img.size = width * height * (state.info_raw.bitdepth * 4 / 8);
|
|
img.format = state.info_raw.bitdepth == 16 ? PIXELFORMAT_RGBA16_UNORM : PIXELFORMAT_RGBA8_UNORM;
|
|
|
|
// LodePNG keeps raw 16 bit images stored as big-endian.
|
|
#ifndef LOVE_BIG_ENDIAN
|
|
if (state.info_raw.bitdepth == 16)
|
|
{
|
|
uint16 *pixeldata = (uint16 *) img.data;
|
|
size_t numpixelcomponents = img.size / sizeof(uint16);
|
|
|
|
for (size_t i = 0; i < numpixelcomponents; i++)
|
|
pixeldata[i] = swapuint16(pixeldata[i]);
|
|
}
|
|
#endif
|
|
|
|
return img;
|
|
}
|
|
|
|
FormatHandler::EncodedImage PNGHandler::encode(const DecodedImage &img, EncodedFormat encodedFormat)
|
|
{
|
|
if (!canEncode(img.format, encodedFormat))
|
|
throw love::Exception("PNG encoder cannot encode to non-PNG format.");
|
|
|
|
EncodedImage encimg;
|
|
|
|
lodepng::State state;
|
|
|
|
state.info_raw.colortype = LCT_RGBA;
|
|
state.info_raw.bitdepth = img.format == PIXELFORMAT_RGBA16_UNORM ? 16 : 8;
|
|
|
|
state.info_png.color.colortype = LCT_RGBA;
|
|
state.info_png.color.bitdepth = state.info_raw.bitdepth;
|
|
|
|
state.encoder.zlibsettings.custom_zlib = zlibCompress;
|
|
|
|
const uint8 *data = img.data;
|
|
uint16 *swappeddata = nullptr;
|
|
|
|
// LodePNG expects big-endian raw pixel data when encoding a 16 bit image.
|
|
#ifndef LOVE_BIG_ENDIAN
|
|
if (state.info_raw.bitdepth == 16)
|
|
{
|
|
try
|
|
{
|
|
swappeddata = new uint16[img.size / sizeof(uint16)];
|
|
}
|
|
catch (std::exception &)
|
|
{
|
|
throw love::Exception("Out of memory.");
|
|
}
|
|
|
|
const uint16 *rawdata = (const uint16 *) img.data;
|
|
size_t numpixelcomponents = img.size / sizeof(uint16);
|
|
|
|
for (size_t i = 0; i < numpixelcomponents; i++)
|
|
swappeddata[i] = swapuint16(rawdata[i]);
|
|
|
|
data = (const uint8 *) swappeddata;
|
|
}
|
|
#endif
|
|
|
|
unsigned status = lodepng_encode(&encimg.data, &encimg.size,
|
|
data, img.width, img.height, &state);
|
|
|
|
if (swappeddata != nullptr)
|
|
delete[] swappeddata;
|
|
|
|
if (status != 0)
|
|
{
|
|
const char *err = lodepng_error_text(status);
|
|
throw love::Exception("Could not encode PNG image (%s)", err);
|
|
}
|
|
|
|
return encimg;
|
|
}
|
|
|
|
void PNGHandler::freeRawPixels(unsigned char *mem)
|
|
{
|
|
// LodePNG uses malloc, realloc, and free.
|
|
if (mem)
|
|
::free(mem);
|
|
}
|
|
|
|
void PNGHandler::freeEncodedImage(unsigned char *mem)
|
|
{
|
|
if (mem)
|
|
::free(mem);
|
|
}
|
|
|
|
} // magpie
|
|
} // image
|
|
} // love
|