RotateImage180() 공개 메소드

public RotateImage180 ( ) : void
리턴 void
예제 #1
0
파일: ImageActions.cs 프로젝트: ywscr/Pinta
		private void HandlePintaCoreActionsImageRotate180Activated (object sender, EventArgs e)
		{
			Document doc = PintaCore.Workspace.ActiveDocument;

			PintaCore.Tools.Commit ();
			doc.RotateImage180 ();

			doc.ResetSelectionPaths ();

			doc.History.PushNewItem (new InvertHistoryItem (InvertType.Rotate180));
		}