/// <summary> /// this method rotated the image /// </summary> /// <param name="clockWise">specifies if its clockwise or the other</param> public void RotateImage(bool clockWise) { if (OriginalImage != null) { OriginalImage.RotateFlip(RotateFlipType.Rotate90FlipXY); ZoomImage(ZoomMode.FitPage); } }