Convertir Excel a imagen de alta resolución
Con la creciente predominancia de pantallas de alta resolución, las imágenes generadas a 96 DPI por defecto a menudo aparecen borrosas e no claras. Para garantizar la claridad en pantallas de alta resolución, es esencial generar imágenes a un DPI más alto. Aspose.Cells ofrece la funcionalidad para establecer ImageOrPrintOptions.HorizontalResolution y ImageOrPrintOptions.VerticalResolution, lo que le permite crear imágenes de alta calidad a partir de archivos de Excel que se ven nítidas en pantallas de alta resolución.
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
// Load the Excel file | |
Workbook workbook = new Workbook("input.xlsx"); | |
// Create an instance of ImageOrPrintOptions | |
ImageOrPrintOptions options = new ImageOrPrintOptions | |
{ | |
// Set horizontal and vertical resolution to 300 DPI | |
HorizontalResolution = 300, | |
VerticalResolution = 300, | |
// Set the image type | |
ImageType = ImageType.Png, | |
}; | |
// Get the worksheet | |
Worksheet sheet = workbook.Worksheets[0]; | |
// Create a SheetRender instance | |
SheetRender render = new SheetRender(sheet, options); | |
// Generate and save the image | |
render.ToImage(0, "output.png"); |