AnimatGuiCtrls.Video.VideoStream.ExportBitmap C# (CSharp) Method

ExportBitmap() public method

Export a frame into a bitmap file
public ExportBitmap ( int position, String dstFileName ) : void
position int Position of the frame
dstFileName String Name of the file to store the bitmap
return void
        public void ExportBitmap(int position, String dstFileName)
        {
            Bitmap bmp = GetBitmap(position);
            bmp.Save(dstFileName, ImageFormat.Bmp);
            bmp.Dispose();
        }