VintaSoft Imaging .NET SDK 14.0: Documentation for Web developer
Vintasoft.Imaging.Annotation Namespace / WebAnnotationViewControllerJS type / burnAnnotationCollection Property
Syntax Exceptions BrowserCompatibility SeeAlso
In This Topic
    burnAnnotationCollection Method
    In This Topic
    Burns annotation collection on image.
    Syntax
    var instance = new Vintasoft.Imaging.Annotation.WebAnnotationViewControllerJS(images);
    
    var value; // Type: any
    
    // Parameters
    var image; // Type: WebImageJS
    var changeSourceFile; // Type: boolean
    var successFunc; // Type: function
    var errorFunc; // Type: function
    
    value = instance.burnAnnotationCollection(image, changeSourceFile, successFunc, errorFunc);
    
    
    function burnAnnotationCollection(
    image
    WebImageJS object.
    : WebImageJS,
    changeSourceFile
    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.
    : boolean,
    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 image with burned annotations.
    : Function,
    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.
    : Function
    ) : any;

    Parameters

    image
    WebImageJS object.
    changeSourceFile
    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 image with burned annotations.
    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