PNG
JPG
BMP
TIFF
XLSM
解析 C++ 中的 XLSM 格式
使用服务器端 Aspose.Cells for C++ API 进行本机和高性能 XLSM 文档解析,无需使用任何软件(如 Microsoft 或 Adobe PDF)。
如何使用 C++ 解析 XLSM 文件
为了解析 XLSM 文件,我们将使用 Aspose.Cells for C++ API 是一个功能丰富、功能强大且易于使用的文档解析 API for C++ 平台。您可以直接下载其最新版本,只需打开 NuGet 包管理器,搜索Aspose.Cells.Cpp并安装。您也可以从程序包管理器控制台使用以下命令。
命令
PM> Install-Package Aspose.Cells.Cpp
解析 C++ 中的 XLSM 文件的步骤
一个基本的文档解析 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 的引用。
解析 XLSM 文件 - C++
Aspose::Cells::Startup();
// extract images from Worksheets
// open a template Excel file
Workbook workbook(u"sampleExtractImagesFromWorksheets.xlsm");
// 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();