67 lines
2.1 KiB
C++
67 lines
2.1 KiB
C++
/*****************************************************************************
|
|
*
|
|
* This file is part of Mapnik (c++ mapping toolkit)
|
|
*
|
|
* Copyright (C) 2015 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>
|
|
|
|
#pragma GCC diagnostic push
|
|
#include <mapnik/warning_ignore_agg.hpp>
|
|
#include "agg_color_rgba.h"
|
|
#pragma GCC diagnostic 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_;
|
|
};
|
|
}
|
|
|
|
#endif // MAPNIK_AGG_PATTERN_SOURCE_HPP
|