1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
// agg_copy_rect.h
// this file is part of Context Free
// ---------------------
// Copyright (C) 2006 Mark Lentczner - markl@glyphic.com
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// Mark Lentczner can be contacted at markl@glyphic.com or at
// Mark Lentczner, 1209 Villa St., Mountain View, CA 94041-1123, USA
//
//
#ifndef AGG_COPY_RECT_INCLUDED
#define AGG_COPY_RECT_INCLUDED
#include "agg2/agg_color_gray.h"
#include "agg2/agg_color_rgba.h"
#include "agg2/agg_renderer_base.h"
namespace agg
{
template<class FromColor, class ToColor>
class ColorConverter
{
public:
static ToColor f(const FromColor& c)
{ return c; }
};
template<>
class ColorConverter<gray8, gray16>
{
public:
static gray16 f(const gray8& c)
{ return gray16(c.v << 8 | c.v, c.a << 8 | c.a); }
};
template<>
class ColorConverter<gray8, rgba16>
{
public:
static rgba16 f(const gray8& c)
{ gray16 g16(c); return rgba16(g16.v, g16.a, g16.v, g16.a); }
};
template<>
class ColorConverter<rgba16, gray8>
{
public:
static gray8 f(const rgba16& c)
{ rgba8 c8(c.r >> 8, c.g >> 8, c.b >> 8, c.a >> 8); return gray8(c8); }
};
template<>
class ColorConverter<rgba16, rgba8>
{
public:
static rgba8 f(const rgba16& c)
{ return rgba8(c.r >> 8, c.g >> 8, c.b >> 8, c.a >> 8); }
};
template<>
class ColorConverter<gray16, gray8>
{
public:
static gray8 f(const gray16& c)
{ return gray8(c.v >> 8, c.a >> 8); }
};
template<>
class ColorConverter<gray16, rgba8>
{
public:
static rgba8 f(const gray16& c)
{ return rgba8(c.v >> 8, c.v >> 8, c.v >> 8, c.a >> 8); }
};
template<class SrcPixelFormat, class DstPixelFormat>
void copy_rect(
SrcPixelFormat& srcFormat,
DstPixelFormat& dstFormat,
const rect_i* rect_src_ptr = 0,
int dst_dx = 0,
int dst_dy = 0
)
{
renderer_base<SrcPixelFormat> srcRenderer(srcFormat);
renderer_base<DstPixelFormat> dstRenderer(dstFormat);
srcRenderer.reset_clipping(true);
dstRenderer.reset_clipping(true);
rect_i rsrc(0, 0, srcRenderer.width(), srcRenderer.height());
if(rect_src_ptr)
{
rsrc.x1 = rect_src_ptr->x1;
rsrc.y1 = rect_src_ptr->y1;
rsrc.x2 = rect_src_ptr->x2 + 1;
rsrc.y2 = rect_src_ptr->y2 + 1;
}
rect_i rdst(rsrc.x1 + dst_dx, rsrc.y1 + dst_dy,
rsrc.x2 + dst_dx, rsrc.y2 + dst_dy);
rect_i rc = dstRenderer.clip_rect_area(rdst, rsrc,
srcRenderer.width(), srcRenderer.height());
// this rect is 0,0,w,h
if(rc.x2 <= rc.x1 || rc.y2 <= rc.y1)
return;
typedef typename SrcPixelFormat::color_type SrcColor;
typedef typename DstPixelFormat::color_type DstColor;
typedef ColorConverter<SrcColor, DstColor> Converter_type;
// no need to use renderers to do this, everything has been clipped
for (int y = 0; y < rc.y2; ++y) {
for (int x = 0; x < rc.x2; ++x) {
dstFormat.copy_pixel(rdst.x1 + x, rdst.y1 + y,
Converter_type::f(srcFormat.pixel(rsrc.x1 + x, rsrc.y1 + y)));
}
}
}
}
#endif // AGG_COPY_RECT_INCLUDED
|