mapnik/include/mapnik/agg_pattern_source.hpp
2024-07-22 10:20:47 +01:00

64 lines
2.1 KiB
C++

/*****************************************************************************
*
* This file is part of Mapnik (c++ mapping toolkit)
*
* Copyright (C) 2024 Artem Pavlenko
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*****************************************************************************/
#ifndef MAPNIK_AGG_PATTERN_SOURCE_HPP
#define MAPNIK_AGG_PATTERN_SOURCE_HPP
// mapnik
#include <mapnik/image.hpp>
#include <mapnik/util/noncopyable.hpp>
#include <mapnik/warning.hpp>
MAPNIK_DISABLE_WARNING_PUSH
#include <mapnik/warning_ignore_agg.hpp>
#include "agg_color_rgba.h"
MAPNIK_DISABLE_WARNING_POP
namespace mapnik {
class pattern_source : private util::noncopyable
{
public:
pattern_source(image_rgba8 const& pattern, double opacity = 1.0)
: pattern_(pattern)
, opacity_(opacity)
{}
unsigned int width() const { return pattern_.width(); }
unsigned int height() const { return pattern_.height(); }
agg::rgba8 pixel(int x, int y) const
{
unsigned c = pattern_(x, y);
return agg::rgba8(static_cast<unsigned>((c & 0xff) * opacity_),
static_cast<unsigned>(((c >> 8) & 0xff) * opacity_),
static_cast<unsigned>(((c >> 16) & 0xff) * opacity_),
static_cast<unsigned>(((c >> 24) & 0xff) * opacity_));
}
private:
image_rgba8 const& pattern_;
double opacity_;
};
} // namespace mapnik
#endif // MAPNIK_AGG_PATTERN_SOURCE_HPP