PNG
JPG
BMP
TIFF
XLSX
解析 C++ 中的 XLSX 格式
使用伺服器端 Aspose.Cells for C++ API 進行本機高效能 XLSX 文件解析,無需使用 Microsoft 或 Adobe PDF 等任何軟體。
如何使用 C++ 解析 XLSX 文件
為了解析 XLSX 文件,我們將使用 Aspose.Cells for C++ API這是一個功能豐富、功能強大且易於使用的文件解析API for C++平台。您可以直接下載最新版本,打開即可 NuGet 套件管理器,搜尋Aspose.Cells.Cpp並安裝。您也可以從套件管理器控制台使用以下命令。
命令
PM> Install-Package Aspose.Cells.Cpp
解析C++中的XLSX檔案的步驟
基本文件解析 Aspose.Cells for C++ 只需幾行程式碼即可完成 API。解析 Microsoft Excel XLS、XLSX、XLSM、XLSB 和 OpenDocument ODS 文件中的文字和圖像。
系統需求
Aspose.Cells for C++ 支援所有主要平台和作業系統。請確保您具備以下先決條件。
- Microsoft Windows 或具有 C++ 運行時環境的相容作業系統,適用於 Windows 32 位元、Windows 64 位元和 Linux 64 位元。
- 在專案中加入對 Aspose.Cells for C++ DLL 的引用。
解析 XLSX 檔案 - C++
Aspose::Cells::Startup();
// extract images from Worksheets
// open a template Excel file
Workbook workbook(u"sampleExtractImagesFromWorksheets.xlsx");
// get the first worksheet
Worksheet worksheet = workbook.GetWorksheets().Get(0);
// get the first Picture in the first worksheet
Picture pic = worksheet.GetPictures().Get(0);
// Note: you may evaluate the image format before specifying the image path
// define ImageOrPrintOptions
ImageOrPrintOptions printoption;
// specify the image format
printoption.SetImageType(ImageType::Jpeg);
// save the image
pic.ToImage(u"outputExtractImagesFromWorksheets.jpg", printoption);
Aspose::Cells::Cleanup();