VintaSoft Annotation .NET Plug-in Discussions
Questions, comments and suggestions concerning VintaSoft Annotation .NET Plug-in.
Board index < VintaSoft Imaging < VintaSoft Annotation .NET Plug-in Discussions
_imageViewer.Image.Rotate(-90); //for RotateToLeftButton _imageViewer.Image.Rotate(90); //for RotateToRightButtonBut if page contains any annotations on it these annotations are not rotated.
var annotationCollection = _imageViewer.Annotations.GetAnnotations(_imageViewer.FocusedIndex);
foreach (AnnotationBase annotationBase in annotationCollection)
{
annotationBase.Rotation = annotationBase.Rotation + 90;
}
but they lost their positions on page.
_imageViewer.Annotations.RotateImageWithAnnotations(0, 90);Please read the description and available properties and methods of the AnnotationController class in the documentation.