#include #include #include #include namespace mbgl { std::string encodePNG(const PremultipliedImage& pre) { QImage image(pre.data.get(), pre.size.width, pre.size.height, QImage::Format_ARGB32_Premultiplied); QByteArray array; QBuffer buffer(&array); buffer.open(QIODevice::WriteOnly); image.rgbSwapped().save(&buffer, "PNG"); return std::string(array.constData(), array.size()); } #if !defined(QT_IMAGE_DECODERS) PremultipliedImage decodeJPEG(const uint8_t*, size_t); #endif PremultipliedImage decodeImage(const std::string& string) { const uint8_t* data = reinterpret_cast(string.data()); const size_t size = string.size(); #if !defined(QT_IMAGE_DECODERS) if (size >= 2) { uint16_t magic = ((data[0] << 8) | data[1]) & 0xffff; if (magic == 0xFFD8) { return decodeJPEG(data, size); } } #endif QImage image = QImage::fromData(data, size) .rgbSwapped() .convertToFormat(QImage::Format_ARGB32_Premultiplied); if (image.isNull()) { throw std::runtime_error("Unsupported image type"); } #if QT_VERSION >= 0x051000 auto img = std::make_unique(image.sizeInBytes()); memcpy(img.get(), image.constBits(), image.sizeInBytes()); #else auto img = std::make_unique(image.byteCount()); memcpy(img.get(), image.constBits(), image.byteCount()); #endif return { { static_cast(image.width()), static_cast(image.height()) }, std::move(img) }; } }