BurnInAnnotations_2

Description Burns all annotations into a single page, then returns with the page in base64.
Method Type POST
URL api/document/burnin2
Parameters
Name Type Description
Anno String Annotations on the page in base64 string. (svg+xml)
Base64 String Page in base64 string.
Width Int Width in pixel of the page.
Height Int Height in pixel of the page
Response Type JSON (JsonResult)
Return values

{

base64 (String) [Base64 image of processed new page]

}

Programming notes

The main difference between BurnInAnnotations and BurnInAnnotations_2 is that BurnInAnnotations_2 expects the annotations as base64 string, therefore the annotations must be converted to base64 on the client side using Javascript.

The base64 must have the following prefix: data:image/svg+xml;base64,

Example

None

Requirements