将 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#
- 安装 Aspose.Cells for .NET in your application.
- 复制以下代码以将 XLS 转换为 PNG:
// 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");
}
Java
- 安装 Aspose.Cells for Java in your application.
- 使用以下代码将 XLSX 转换为 PNG:
// 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
- 为 Python 安装 Aspose.Cells in your application.
- 使用以下代码将 Excel 工作表转换为 PNG:
# 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 小时后从我们的服务器中删除。