You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Enables optimization the output PDF file for viewing online with a web browser. This optimization allows a browser to display the first pages of a PDF file when you open the document, instead of waiting for the entire file to download.
1573
+
*/
1574
+
publiclineriaze: boolean;
1575
+
1576
+
/**
1577
+
* Enables removing annotation from the output PDF file.
1578
+
*/
1579
+
publicremoveAnnotations: boolean;
1580
+
1581
+
/**
1582
+
* Enables removing form fields from a PDF file.
1583
+
*/
1584
+
publicremoveFormFields: boolean;
1585
+
1586
+
/**
1587
+
* Enables converting the output PDF file to a grayscale.
1588
+
*/
1589
+
publicconvertToGrayScale: boolean;
1590
+
1591
+
/**
1592
+
* Subsets fonts in the output PDF file. If the file uses embedded fonts, it contains all font data. GroupDocs.Viewer can subset embedded fonts to reduce the file size.
1593
+
*/
1594
+
publicsubsetFonts: boolean;
1595
+
1596
+
/**
1597
+
* Enables compressing images in the output PDF file. Use this option to allow other compressing options: PdfOptimizationOptions.ImageQuality and PdfOptimizationOptions.MaxResolution.
1598
+
*/
1599
+
publiccompressImages: boolean;
1600
+
1601
+
/**
1602
+
* Sets the image quality in the output PDF file (in percent). To change the image quality, first set the PdfOptimizationOptions.CompressImages property to true.
1603
+
*/
1604
+
publicimageQuality: number;
1605
+
1606
+
/**
1607
+
* Enables setting the maximum resolution in the output PDF file. To allow this option, set the GroupDocs.Viewer.Options.PdfOptimizationOptions.CompressImages property to true. This option allows setting the GroupDocs.Viewer.Options.PdfOptimizationOptions.MaxResolution property.
1608
+
*/
1609
+
publicresizeImages: boolean;
1610
+
1611
+
/**
1612
+
* Sets the maximum resolution in the output PDF file. To allow this option, set the GroupDocs.Viewer.Options.PdfOptimizationOptions.CompressImages and GroupDocs.Viewer.Options.PdfOptimizationOptions.MaxResolution properties to true. The default value is 300.
1613
+
*/
1614
+
publicmaxResolution: number;
1615
+
1616
+
/**
1617
+
* Enables optimization of spreadsheets in the PDF files. This optimization allows to reduce the output file size by setting up border lines. Besides that, it removes the Arial and Times New Roman characters of 32-127 codes.
0 commit comments