예제 #1
0
        // Rotate the image
        private void RotateImage( )
        {
            RotateForm form = new RotateForm( );

            if ( form.ShowDialog( ) == DialogResult.OK )
            {
                ApplyFilter( form.Filter );
            }
        }
예제 #2
0
파일: ImageDoc.cs 프로젝트: LynxAS/iplab_d
        // Rotate the image
        private void RotateImage( )
        {
            RotateForm form = new RotateForm( );

            if ( form.ShowDialog( ) == DialogResult.OK )
            {
                logger.StoreMessage("Rotated image");
                ApplyFilter( form.Filter );

            }
        }