LongoMatch.Drawing.Widgets.Blackboard.Save C# (CSharp) Method

Save() public method

Saves the current canvas to an Image
public Save ( ) : Image
return Image
        public Image Save()
        {
            Area roi;

            ClearSelection ();
            drawing.Freehand = backbuffer.Copy ();
            roi = RegionOfInterest;
            if (roi == null || roi.Empty) {
                roi = new Area (0, 0, Background.Width, Background.Height);
            }
            return tk.Copy (this, roi);
        }

Same methods

Blackboard::Save ( string filename ) : void