PNG
JPG
BMP
TIFF
XLS
解析 C# 中的 XLS 格式
使用伺服器端 Aspose.Cells for .NET API 進行本機高效能 XLS 文件解析,無需使用 Microsoft 或 Adobe PDF 等任何軟體。
如何使用 C# 解析 XLS 文件
為了解析 XLS 文件,我們將使用 Aspose.Cells for .NET API這是一個功能豐富、強大且易於使用的文件操作API,適用於C#平台。打開 NuGet 套件管理器,搜尋 Aspose.Cells並安裝。您也可以從套件管理器控制台使用以下命令。
命令
PM> Install-Package Aspose.Cells
解析C#中的XLS檔案的步驟
基本文件解析 Aspose.Cells for .NET 只需幾行程式碼即可完成 API。解析 Microsoft Excel XLS、XLSX、XLSM、XLSB 和 OpenDocument ODS 文件中的文字和圖像。
載入XLS文檔。
- 選擇工作表。
- 取得圖片和影像類型。
- 儲存影像。
- 儲存文件
系統需求
我們的 API 在所有主要平台和作業系統上均受支援。在執行下面的程式碼之前,請確保您的系統符合以下先決條件。
- Microsoft Windows 或具有 .NET Framework、.NET Core、Mono 或 Xamarin 平台的相容作業系統
- 開發環境如Microsoft Visual Studio
- 在專案中新增對 Aspose.Cells for .NET DLL 的引用 - 使用上面的下載按鈕從 NuGet 安裝
解析 XLS 檔案 - C#
// extract images from Worksheets
// open a template Excel file
Workbook workbook = new Workbook("sampleExtractImagesFromWorksheets.xls");
// get the first worksheet
Worksheet worksheet = workbook.Worksheets[0];
// get the first Picture in the first worksheet
Aspose.Cells.Drawing.Picture pic = worksheet.Pictures[0];
// set the output image file path
string picformat = pic.ImageType.ToString();
// Note: you may evaluate the image format before specifying the image path
// define ImageOrPrintOptions
Aspose.Cells.Rendering.ImageOrPrintOptions printoption = new Aspose.Cells.Rendering.ImageOrPrintOptions();
// specify the image format
printoption.ImageType = Aspose.Cells.Drawing.ImageType.Jpeg;
// save the image
pic.ToImage("outputExtractImagesFromWorksheets.jpg", printoption);
關於 Aspose.Cells for .NET API
Aspose.Cells API 可用於建立、編輯、轉換和渲染 Microsoft Excel 格式為不同的格式。此外,它還可用於軟體應用程式中的全面圖表、可擴展報告和可靠計算。 Aspose.Cells 是一個獨立的 API,它不需要任何像 Microsoft 或 OpenOffice 這樣的軟體。線上 XLS 解析器現場演示
立即造訪我們的網站,從 XLS 文件中提取文字和圖像 現場示範網站 。現場演示有以下好處
無需下載Aspose API。
無需編寫任何程式碼。
只需上傳您的 XLS 文件即可。
它將立即被解析。
XLS 什麼是 XLS 文件格式
副檔名為 XLS 的檔案代表 Excel 二進位檔案格式。此類文件可以由 Microsoft Excel 以及其他類似的電子表格程式(例如 OpenOffice Calc 或 Apple Numbers)建立。資料以工作表中的表格格式儲存並顯示給用戶,可以涵蓋數值、文字資料、公式、外部資料連接、圖像和圖表。 Microsoft Excel 等應用程式可讓您將工作簿資料匯出為多種不同的格式,包括 PDF、CSV、XLSX、TXT、HTML、XPS 等。隨著 Microsoft Excel 2007 的發布,XLS 文件格式被更開放和結構化的格式 XLSX 所取代。
閱讀更多