VintaSoft Imaging .NET SDK 15.1: Documentation for Web developer
Vintasoft.Imaging.Annotation Namespace / WebAnnotationViewControllerJS type / rotateImageWithAnnotation Property
Syntax Exceptions BrowserCompatibility SeeAlso
In This Topic
rotateImageWithAnnotation Method
In This Topic
Rotates image with annotations.
Syntax
var instance = new Vintasoft.Imaging.Annotation.WebAnnotationViewControllerJS(images);

var value; // Type: any

// Parameters
var image; // Type: WebImageJS
var angle; // Type: number
var borderColor; // Type: string
var borderColorType; // Type: WebBorderColorTypeEnumJS
var changeSource; // Type: boolean
var successFunc; // Type: function
var errorFunc; // Type: function

value = instance.rotateImageWithAnnotation(image, angle, borderColor, borderColorType, changeSource, successFunc, errorFunc);

Parameters

image
WebImageJS object.
angle
Rotation angle in degrees.
borderColor
The border color.
borderColorType
WebBorderColorTypeEnumJS object which defines the border color type.
changeSource
Indicates whether the changes must be saved in the source file. True - changes must be saved in the source file; False - changes must be saved in new file.
successFunc
Function that will be executed if request is executed successfully.
Here is function prototype "function __success(data)".
The data parameter has the following properties:
  • imageInfo (object): Information about image (image ID and page index).
  • sourceImage (object): WebImageJS object, which represents source image.
  • processedImage (object): WebImageJS object, which represents rotated image.
errorFunc
Function that will be executed if request is failed.
Here is function prototype "function __error(data)".
The data parameter can be:
  1. An object with following properties:
    • errorMessage (string): Error message.
    • blocked (boolean): Indicates that the requested action is blocked by another request.
    • sourceImage (object): WebImageJS object, which represents source image.
    if exception is catched inside web service.
  2. Otherwise, jqXHR object.
Exceptions
ExceptionDescription
Thrown if arguments have wrong types.
Thrown if image collection does not contain the specified image.
Browser Compatibility
56+
45+
11
See Also