تحويل ملفات XLS مع الصور والرسوم البيانية إلى PDF

يمكن القيام بالعملية في الذاكرة من دون الاعتماد على ملفات XML مؤقتة أو وسيطة. وهذا يعني أنه يمكن تحويل ملفات إكسل كبيرة، على سبيل المثال تلك التي تحتوي على صور ورسوم بيانية وكائنات رسم أخرى، بسرعة وكفاءة.

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(ConvertXLSFileToPDF.class);
//Create a new Workbook
Workbook book = new Workbook(dataDir + "SampleInput.xlsx");
//Save the excel file to PDF format
book.save(dataDir + "output.pdf", SaveFormat.PDF);

مقالات ذات صلة