2015-02-02 19:29:37 +01:00
|
|
|
/*
|
|
|
|
Copyright (c) 2015, Matthias Schiffer <mschiffer@universe-factory.net>
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer.
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
|
|
|
|
namespace MinedMap {
|
2015-02-03 12:41:47 +01:00
|
|
|
namespace PNG {
|
2015-02-02 19:29:37 +01:00
|
|
|
|
2020-06-19 20:08:02 +02:00
|
|
|
enum Format {
|
|
|
|
RGB_ALPHA,
|
|
|
|
GRAY_ALPHA,
|
|
|
|
GRAY,
|
|
|
|
};
|
|
|
|
|
2020-06-20 15:01:09 +02:00
|
|
|
static inline size_t formatBytes(Format format) {
|
|
|
|
const size_t data[] = {
|
|
|
|
[RGB_ALPHA] = 4,
|
|
|
|
[GRAY_ALPHA] = 2,
|
|
|
|
[GRAY] = 1,
|
|
|
|
};
|
|
|
|
|
|
|
|
return data[format];
|
|
|
|
}
|
|
|
|
|
2020-06-19 20:08:02 +02:00
|
|
|
void write(const char *filename, const uint8_t *data, size_t width, size_t height, Format format);
|
|
|
|
void read(const char *filename, uint8_t *data, size_t width, size_t height, Format format);
|
|
|
|
void mipmap(const char *output, size_t width, size_t height, Format format, const char *nw, const char *ne, const char *sw, const char *se);
|
2015-02-02 19:29:37 +01:00
|
|
|
|
|
|
|
}
|
2015-02-03 12:41:47 +01:00
|
|
|
}
|