حفظ Excel إلى PDF بحجم قياسي أو حد أدنى
Contents
[
Hide
]
بشكل افتراضي، تقوم Aspose.Cells بحفظ Excel إلى PDF بحجم قياسي. ومع ذلك، يمكنك أيضًا حفظه بحجم أدنى باستخدام خاصية PdfSaveOptions.OptimizationType. إنها تقبل القيم التالية
- PdfOptimizationType.Standard
- PdfOptimizationType.MinimumSize
حفظ Excel إلى PDF بحجم قياسي أو حد أدنى باستخدام Aspose.Cells
يوضح الكود العيني التالي كيف يمكنك حفظ Excel إلى PDF بحجم قياسي أو حد أدنى باستخدام الخاصية PdfSaveOptions.OptimizationType.
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); |