OpenRCT2/src/openrct2/core/Imaging.h

64 lines
1.6 KiB
C
Raw Normal View History

/*****************************************************************************
* Copyright (c) 2014-2018 OpenRCT2 developers
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
2017-01-07 13:10:42 +01:00
#pragma once
2015-12-29 15:32:51 +01:00
2018-05-09 00:39:03 +02:00
#include <functional>
#include <istream>
2018-05-07 22:32:24 +02:00
#include <memory>
#include <string_view>
#include <vector>
2018-05-07 19:45:15 +02:00
#include "../common.h"
2018-05-09 00:39:03 +02:00
#include "../drawing/Drawing.h"
2017-06-09 00:02:39 +02:00
struct rct_drawpixelinfo;
struct rct_palette;
struct PaletteBGRA
{
uint8 Blue{};
uint8 Green{};
uint8 Red{};
uint8 Alpha{};
};
2018-05-07 22:32:24 +02:00
enum class IMAGE_FORMAT
{
UNKNOWN,
AUTOMATIC, // Automatically detect from file extension
BITMAP,
PNG,
PNG_32, // Force load to 32bpp buffer
};
struct Image
{
// Meta
uint32 Width{};
uint32 Height{};
uint32 Depth{};
// Data
std::vector<uint8> Pixels;
std::unique_ptr<rct_palette> Palette;
uint32 Stride{};
};
2018-05-09 00:39:03 +02:00
using ImageReaderFunc = std::function<Image(std::istream&, IMAGE_FORMAT)>;
2018-05-07 22:32:24 +02:00
2017-01-07 13:10:42 +01:00
namespace Imaging
{
IMAGE_FORMAT GetImageFormatFromPath(const std::string_view& path);
2018-05-07 22:32:24 +02:00
Image ReadFromFile(const std::string_view& path, IMAGE_FORMAT format = IMAGE_FORMAT::AUTOMATIC);
Image ReadFromBuffer(const std::vector<uint8>& buffer, IMAGE_FORMAT format = IMAGE_FORMAT::AUTOMATIC);
void WriteToFile(const std::string_view& path, const Image& image, IMAGE_FORMAT format = IMAGE_FORMAT::AUTOMATIC);
2018-05-09 00:39:03 +02:00
void SetReader(IMAGE_FORMAT format, ImageReaderFunc impl);
2017-01-07 13:10:42 +01:00
}