int width = imageEditor.Size.Width;
int height = imageEditor.Size.Height;
Bitmap bm = new Bitmap(width, height);
imageEditor.DrawToBitmap(bm, new Rectangle(0, 0, width, height));
bm.Save(@"C:\Users\asd\Desktop\test1.jpeg", ImageFormat.Jpeg);
int width = imageEditor.Size.Width;
int height = imageEditor.Size.Height;
Bitmap bm = new Bitmap(width, height);
imageEditor.DrawToBitmap(bm, new Rectangle(0, 0, width, height));
bm.Save(@"C:\Users\asd\Desktop\test1.jpeg", ImageFormat.Jpeg);