I have two buttons on my form: RotateToLeftButton and RotateToRightButton.
On click of this buttons I run the code like this:
_imageViewer.Image.Rotate(-90); //for RotateToLeftButton _imageViewer.Image.Rotate(90); //for RotateToRightButtonBut if page contains any annotations on it these annotations are not rotated.
Could you give me example how to rotate all annotations on selected page during page rotating?
I tried to rotate them:
var annotationCollection = _imageViewer.Annotations.GetAnnotations(_imageViewer.FocusedIndex);
foreach (AnnotationBase annotationBase in annotationCollection)
{
annotationBase.Rotation = annotationBase.Rotation + 90;
}
but they lost their positions on page.
