aseprite/src/render/quantization.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
2.6 KiB
C
Raw Normal View History

// Aseprite Render Library
// Copyright (c) 2019-2021 Igara Studio S.A.
// Copyright (c) 2001-2017 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/frame.h"
#include "doc/pixel_format.h"
#include "doc/rgbmap_algorithm.h"
#include "render/color_histogram.h"
#include <vector>
namespace doc {
class Image;
class Palette;
class RgbMap;
class Sprite;
} // namespace doc
namespace render {
class Dithering;
class TaskDelegate;
class PaletteOptimizer {
public:
void feedWithImage(const doc::Image* image, const bool withAlpha);
void feedWithImage(const doc::Image* image, const gfx::Rect& bounds, const bool withAlpha);
void feedWithRgbaColor(doc::color_t color);
void calculate(doc::Palette* palette, int maskIndex);
2020-03-26 01:32:43 +08:00
bool isHighPrecision() { return m_histogram.isHighPrecision(); }
int highPrecisionSize() { return m_histogram.highPrecisionSize(); }
private:
render::ColorHistogram<5, 6, 5, 5> m_histogram;
bool m_withAlpha = false;
};
// Creates a new palette suitable to quantize the given RGB sprite to Indexed color.
doc::Palette* create_palette_from_sprite(const doc::Sprite* sprite,
const doc::frame_t fromFrame,
const doc::frame_t toFrame,
const bool withAlpha,
doc::Palette* newPalette, // Can be NULL to create a new
// palette
TaskDelegate* delegate,
const bool newBlend,
RgbMapAlgorithm mapAlgo,
2020-03-26 01:32:43 +08:00
const bool calculateWithTransparent = true);
// 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 doc::Image* src,
doc::Image* dst, // Can be NULL to create a new image
doc::PixelFormat pixelFormat,
const render::Dithering& dithering,
const doc::RgbMap* rgbmap,
const doc::Palette* palette,
bool is_background,
doc::color_t new_mask_color,
doc::rgba_to_graya_func toGray = nullptr,
TaskDelegate* delegate = nullptr);
} // namespace render
#endif