using System; using System.Collections.Generic; using System.Text; using System.Drawing; using System.Drawing.Drawing2D; namespace Svg.FilterEffects { public interface ISvgFilter { void ApplyFilter(Bitmap sourceGraphic, Graphics renderer); List Primitives { get; } Dictionary Results { get; } SvgUnit Width { get; set; } SvgUnit Height { get; set; } } }