Svg.FilterEffects.SvgMerge.Process C# (CSharp) Method

Process() public method

public Process ( ) : Bitmap
return System.Drawing.Bitmap
        public override Bitmap Process()
        {
			//Todo

            //Bitmap merged = new Bitmap((int)this.Owner.Width.Value, (int)this.Owner.Height.Value); 
            //Graphics mergedGraphics = Graphics.FromImage(merged);

            //foreach (string resultId in this.MergeResults)
            //{
            //    mergedGraphics.DrawImageUnscaled(this.Owner.Results[resultId](), new Point(0, 0));
            //}

            //mergedGraphics.Save();
            //mergedGraphics.Dispose();

            //results.Add(this.Result, () => merged);

            return null;
        }