@@ -60,6 +60,11 @@ export class AnnotateOptions {
6060 name : "outputPath" ,
6161 baseName : "outputPath" ,
6262 type : "string" ,
63+ } ,
64+ {
65+ name : "fontsPath" ,
66+ baseName : "fontsPath" ,
67+ type : "string" ,
6368 } ] ;
6469
6570 /**
@@ -99,6 +104,11 @@ export class AnnotateOptions {
99104 */
100105 public outputPath : string ;
101106
107+ /**
108+ * The path to directory containing custom fonts in storage
109+ */
110+ public fontsPath : string ;
111+
102112 public constructor ( init ?: Partial < AnnotateOptions > ) {
103113
104114 Object . assign ( this , init ) ;
@@ -239,6 +249,11 @@ export class AnnotationInfo {
239249 baseName : "angle" ,
240250 type : "number" ,
241251 } ,
252+ {
253+ name : "zIndex" ,
254+ baseName : "zIndex" ,
255+ type : "number" ,
256+ } ,
242257 {
243258 name : "url" ,
244259 baseName : "url" ,
@@ -382,6 +397,11 @@ export class AnnotationInfo {
382397 */
383398 public angle : number ;
384399
400+ /**
401+ * Gets or sets z-index. Default value is 0 The z-index property specifies the stack order of an element.
402+ */
403+ public zIndex : number ;
404+
385405 /**
386406 * Gets or sets annotation link url
387407 */
@@ -1337,10 +1357,25 @@ export class PreviewOptions {
13371357 baseName : "height" ,
13381358 type : "number" ,
13391359 } ,
1360+ {
1361+ name : "resolution" ,
1362+ baseName : "resolution" ,
1363+ type : "number" ,
1364+ } ,
13401365 {
13411366 name : "renderComments" ,
13421367 baseName : "renderComments" ,
13431368 type : "boolean" ,
1369+ } ,
1370+ {
1371+ name : "renderAnnotations" ,
1372+ baseName : "renderAnnotations" ,
1373+ type : "boolean" ,
1374+ } ,
1375+ {
1376+ name : "fontsPath" ,
1377+ baseName : "fontsPath" ,
1378+ type : "string" ,
13441379 } ] ;
13451380
13461381 /**
@@ -1375,11 +1410,26 @@ export class PreviewOptions {
13751410 */
13761411 public height : number ;
13771412
1413+ /**
1414+ * Gets or sets the resolution for generated images, in dots per inch. The default value is 96.
1415+ */
1416+ public resolution : number ;
1417+
13781418 /**
13791419 * Render document comments. Default value is 'false'.
13801420 */
13811421 public renderComments : boolean ;
13821422
1423+ /**
1424+ * The property that controls whether annotations will be generated on the preview. Default State - true.
1425+ */
1426+ public renderAnnotations : boolean ;
1427+
1428+ /**
1429+ * The path to directory containing custom fonts in storage
1430+ */
1431+ public fontsPath : string ;
1432+
13831433 public constructor ( init ?: Partial < PreviewOptions > ) {
13841434
13851435 Object . assign ( this , init ) ;
0 commit comments