Spara Excel i PDF med standard- eller minimistorlek
Contents
[
Hide
]
Som standard sparar Aspose.Cells Excel i PDF med standardstorlek. Men du kan också spara den med Minsta storlek med hjälp avPdfSaveOptions.OptimizationType fast egendom. Den accepterar följande värden
- PdfOptimizationType.Standard
- PdfOptimizationType.MinimumSize
Spara Excel i PDF med standard- eller minimistorlek med Aspose.Cells
Följande exempelkod visar hur du kan spara Excel i PDF med standard- eller minimistorlek med hjälp avPdfSaveOptions.OptimizationTypefast egendom.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Load excel file into workbook object | |
Workbook workbook = new Workbook(dataDir + "SampleBook.xlsx"); | |
// Save into Pdf with Minimum size | |
PdfSaveOptions opts = new PdfSaveOptions(); | |
opts.OptimizationType = Aspose.Cells.Rendering.PdfOptimizationType.MinimumSize; | |
workbook.Save(dataDir + "OptimizedOutput_out.pdf", opts); |