在線免費 Excel 到 PNG 轉換器

將 Excel 轉換為 PNG

使用我們的在線 Excel 到 PNG 轉換器將 XLS 轉換為 PNG。無需安裝任何軟件即可享受快速和高質量的轉換。

免費 Excel 到 PNG 在線轉換器
Input file
Output format
  

我們免費的 Excel 到 PNG 轉換器使將 XLS 或 XLSX 工作表轉換為 PNG 圖像變得異常容易。只需從您的瀏覽器訪問該工具並執行快速、準確和高質量的轉換。無需安裝任何軟件。隨時隨地享受從 Excel 到 PNG 的無憂轉換。

我們保護您的隱私,因此,我們會在 24 小時後從我們的服務器中刪除您的輸入和輸出文件。

如何在線將 Excel 轉換為 PNG

  • 使用上傳按鈕上傳您的 Excel 文件。
  • 然後,按轉換按鈕開始轉換。
  • 轉換後的 PNG 圖像將自動下載。

Excel 到 PNG 轉換器 - 面向開發人員

您是開發人員並想以編程方式創建 Excel 到 PNG 的轉換工具嗎?以下部分為您提供了有關如何從頭開始創建 Excel 到 PNG 轉換器的指南。

將 XLS 轉換為 PNG

以下部分將指導您如何使用不同的編程語言將 Excel XLSX 轉換為 PNG 圖像。

C#

// Load Excel file
Workbook book = new Workbook("Excel_Sheet.xlsx");

// Get the reference of the desired worksheet
Worksheet sheet = book.Worksheets[0];

// Set image options
ImageOrPrintOptions options = new ImageOrPrintOptions();
options.HorizontalResolution = 200;
options.VerticalResolution = 200;
options.ImageType = Drawing.ImageType.Png;

// Convert sheet to PNG image
SheetRender sr = new SheetRender(sheet, options);
for (int j = 0; j < sr.PageCount; j++)
{
    sr.ToImage(j, "excel-to-PNG" + (j + 1) + ".png");
}

閱讀有關在 C# 中將 Excel 轉換為圖像的完整文章

Java

// Load Excel file
Workbook workbook = new Workbook("workbook.xlsx");

// Create an object of ImageOrPrintOptions
ImageOrPrintOptions imgOptions = new ImageOrPrintOptions();

// Set the output image type
imgOptions.setImageType(ImageType.PNG);

// Get the first worksheet
Worksheet sheet = workbook.getWorksheets().get(0);

// Create a SheetRender object for the target sheet
SheetRender sr = new SheetRender(sheet, imgOptions);

for (int page = 0; page < sr.getPageCount(); page++) {
    // Generate an image for the worksheet
    sr.toImage(page, "image" + page + ".png");
}

看看關於如何在 Java 中將 Excel 轉換為 PNG 的詳細文章。

Python

# load the Excel workbook
workbook = Workbook("workbook.xlsx")

# create image options
imgOptions = ImageOrPrintOptions()
imgOptions.setSaveFormat(SaveFormat.PNG)

# load the worksheet to be rendered
sheet = workbook.getWorksheets().get(0)

# create sheet render object
sr = SheetRender(sheet, imgOptions)

# convert sheet to image
for j in range(0, sr.getPageCount()):
    sr.toImage(j, "output-PNG-%s" %(j) + ".png")

詳細了解如何在 Python 中將 Excel 轉換為 PNG

雲 Excel 到 PNG 轉換器

您還可以使用我們的雲 API 來轉換您的 Excel 文件。請訪問此頁面 了解更多詳情。

加起來

如何在線將 XLS 轉換為 PNG?

首先,上傳您的 Excel XLS 文件,然後按“轉換”按鈕。轉換完成後,將下載 PNG 圖像。

這個 Excel 到 PNG 轉換工具的工作速度有多快?

這個免費的 Excel 到 PNG 工具可以在幾秒鐘內完成轉換。

使用此在線 XLS 到 PNG 轉換器是否安全?

所有上傳和轉換的文件都會保持安全並在 24 小時後從我們的服務器中刪除。

如何以編程方式創建 Excel 到 PNG 轉換器?

使用我們的獨立庫雲 API 創建在線 Excel 到 PNG 轉換工具。