aseprite/src/render/quantization.h

61 lines
1.4 KiB
C
Raw Normal View History

// Aseprite Rener Library
// Copyright (c) 2001-2015 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef RENDER_QUANTIZATION_H_INCLUDED
#define RENDER_QUANTIZATION_H_INCLUDED
#pragma once
#include "doc/dithering_method.h"
#include "doc/frame.h"
#include "doc/pixel_format.h"
#include "render/color_histogram.h"
#include <vector>
namespace doc {
class Image;
class Palette;
class RgbMap;
class Sprite;
}
namespace render {
using namespace doc;
class PaletteOptimizer {
public:
void feedWithImage(Image* image, bool withAlpha);
void calculate(Palette* palette, bool hasBackgroundLayer);
private:
ColorHistogram<5, 6, 5, 5> m_histogram;
};
// Creates a new palette suitable to quantize the given RGB sprite to Indexed color.
Palette* create_palette_from_rgb(
const Sprite* sprite,
frame_t fromFrame,
frame_t toFrame,
bool withAlpha,
Palette* newPalette); // Can be NULL to create a new palette
// Changes the image pixel format. The dithering method is used only
// when you want to convert from RGB to Indexed.
Image* convert_pixel_format(
const Image* src,
Image* dst, // Can be NULL to create a new image
PixelFormat pixelFormat,
DitheringMethod ditheringMethod,
const RgbMap* rgbmap,
const Palette* palette,
bool is_background,
color_t new_mask_color);
} // namespace render
#endif