agg_span_image_filter_rgba32.h
来自「这是VCF框架的代码」· C头文件 代码 · 共 549 行 · 第 1/2 页
H
549 行
//----------------------------------------------------------------------------// Anti-Grain Geometry - Version 2.1// Copyright (C) 2002-2004 Maxim Shemanarev (http://www.antigrain.com)//// Permission to copy, use, modify, sell and distribute this software // is granted provided this copyright notice appears in all copies. // This software is provided "as is" without express or implied// warranty, and with no claim as to its suitability for any purpose.////----------------------------------------------------------------------------// Contact: mcseem@antigrain.com// mcseemagg@yahoo.com// http://www.antigrain.com//----------------------------------------------------------------------------//// classes span_image_filter_rgba32*////----------------------------------------------------------------------------#ifndef AGG_SPAN_IMAGE_FILTER_RGBA32_INCLUDED#define AGG_SPAN_IMAGE_FILTER_RGBA32_INCLUDED#include "agg_basics.h"#include "agg_pixfmt_rgba32.h"#include "agg_span_image_filter.h"namespace agg{ //=============================================span_image_filter_rgba32_nn template<class Order, class Interpolator, class Allocator = span_allocator<rgba8> > class span_image_filter_rgba32_nn : public span_image_filter<rgba8, Interpolator, Allocator> { public: typedef Interpolator interpolator_type; typedef Allocator alloc_type; typedef span_image_filter<rgba8, Interpolator, alloc_type> base_type; typedef rgba8 color_type; //-------------------------------------------------------------------- span_image_filter_rgba32_nn(alloc_type& alloc) : base_type(alloc) {} //-------------------------------------------------------------------- span_image_filter_rgba32_nn(alloc_type& alloc, const rendering_buffer& src, const color_type& back_color, interpolator_type& inter) : base_type(alloc, src, back_color, inter, 0) {} //-------------------------------------------------------------------- color_type* generate(int x, int y, unsigned len) { base_type::interpolator().begin(x, y, len); int fg[4]; const unsigned char *fg_ptr; color_type* span = base_type::allocator().span(); int maxx = base_type::source_image().width() - 1; int maxy = base_type::source_image().height() - 1; do { base_type::interpolator().coordinates(&x, &y); x >>= image_subpixel_shift; y >>= image_subpixel_shift; if(x >= 0 && y >= 0 && x <= maxx && y <= maxy) { fg_ptr = base_type::source_image().row(y) + (x << 2); fg[0] = *fg_ptr++; fg[1] = *fg_ptr++; fg[2] = *fg_ptr++; fg[3] = *fg_ptr++; } else { fg[Order::R] = base_type::background_color().r; fg[Order::G] = base_type::background_color().g; fg[Order::B] = base_type::background_color().b; fg[Order::A] = base_type::background_color().a; } span->r = fg[Order::R]; span->g = fg[Order::G]; span->b = fg[Order::B]; span->a = fg[Order::A]; ++span; ++base_type::interpolator(); } while(--len); return base_type::allocator().span(); } }; //=======================================span_image_filter_rgba32_bilinear template<class Order, class Interpolator, class Allocator = span_allocator<rgba8> > class span_image_filter_rgba32_bilinear : public span_image_filter<rgba8, Interpolator, Allocator> { public: typedef Interpolator interpolator_type; typedef Allocator alloc_type; typedef span_image_filter<rgba8, Interpolator, alloc_type> base_type; typedef rgba8 color_type; //-------------------------------------------------------------------- span_image_filter_rgba32_bilinear(alloc_type& alloc) : base_type(alloc) {} //-------------------------------------------------------------------- span_image_filter_rgba32_bilinear(alloc_type& alloc, const rendering_buffer& src, const color_type& back_color, interpolator_type& inter) : base_type(alloc, src, back_color, inter, 0) {} //-------------------------------------------------------------------- color_type* generate(int x, int y, unsigned len) { base_type::interpolator().begin(x, y, len); int fg[4]; int back_r = base_type::background_color().r; int back_g = base_type::background_color().g; int back_b = base_type::background_color().b; int back_a = base_type::background_color().a; const unsigned char *fg_ptr; int stride = base_type::source_image().stride() - 2 * 4; color_type* span = base_type::allocator().span(); int maxx = base_type::source_image().width() - 1; int maxy = base_type::source_image().height() - 1; do { int x_hr; int y_hr; base_type::interpolator().coordinates(&x_hr, &y_hr); int x_lr = x_hr >> image_subpixel_shift; int y_lr = y_hr >> image_subpixel_shift; int weight; if(x_lr >= 0 && y_lr >= 0 && x_lr < maxx && y_lr < maxy) { fg[0] = fg[1] = fg[2] = fg[3] = image_subpixel_size * image_subpixel_size / 2; x_hr &= image_subpixel_mask; y_hr &= image_subpixel_mask; fg_ptr = base_type::source_image().row(y_lr) + (x_lr << 2); weight = (image_subpixel_size - x_hr) * (image_subpixel_size - y_hr); fg[0] += weight * *fg_ptr++; fg[1] += weight * *fg_ptr++; fg[2] += weight * *fg_ptr++; fg[3] += weight * *fg_ptr++; weight = x_hr * (image_subpixel_size - y_hr); fg[0] += weight * *fg_ptr++; fg[1] += weight * *fg_ptr++; fg[2] += weight * *fg_ptr++; fg[3] += weight * *fg_ptr++; fg_ptr += stride; weight = (image_subpixel_size - x_hr) * y_hr; fg[0] += weight * *fg_ptr++; fg[1] += weight * *fg_ptr++; fg[2] += weight * *fg_ptr++; fg[3] += weight * *fg_ptr++; weight = x_hr * y_hr; fg[0] += weight * *fg_ptr++; fg[1] += weight * *fg_ptr++; fg[2] += weight * *fg_ptr++; fg[3] += weight * *fg_ptr++; fg[0] >>= image_subpixel_shift * 2; fg[1] >>= image_subpixel_shift * 2; fg[2] >>= image_subpixel_shift * 2; fg[3] >>= image_subpixel_shift * 2; } else { if(x_lr < -1 || y_lr < -1 || x_lr > maxx || y_lr > maxy) { fg[Order::R] = back_r; fg[Order::G] = back_g; fg[Order::B] = back_b; fg[Order::A] = back_a; } else { fg[0] = fg[1] = fg[2] = fg[3] = image_subpixel_size * image_subpixel_size / 2; x_hr &= image_subpixel_mask; y_hr &= image_subpixel_mask; weight = (image_subpixel_size - x_hr) * (image_subpixel_size - y_hr); if(x_lr >= 0 && y_lr >= 0 && x_lr <= maxx && y_lr <= maxy) { fg_ptr = base_type::source_image().row(y_lr) + (x_lr << 2); fg[0] += weight * *fg_ptr++; fg[1] += weight * *fg_ptr++; fg[2] += weight * *fg_ptr++; fg[3] += weight * *fg_ptr++; } else { fg[Order::R] += back_r * weight; fg[Order::G] += back_g * weight; fg[Order::B] += back_b * weight; fg[Order::A] += back_a * weight; } x_lr++; weight = x_hr * (image_subpixel_size - y_hr); if(x_lr >= 0 && y_lr >= 0 && x_lr <= maxx && y_lr <= maxy) { fg_ptr = base_type::source_image().row(y_lr) + (x_lr << 2); fg[0] += weight * *fg_ptr++; fg[1] += weight * *fg_ptr++; fg[2] += weight * *fg_ptr++; fg[3] += weight * *fg_ptr++; } else { fg[Order::R] += back_r * weight; fg[Order::G] += back_g * weight; fg[Order::B] += back_b * weight; fg[Order::A] += back_a * weight; } x_lr--; y_lr++; weight = (image_subpixel_size - x_hr) * y_hr;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?