Microsoft® Conversione formato Excel via .NET

Importa ed esporta file Excel come formati di fogli di calcolo, Web, immagini e layout fisso

 

.NET La libreria Excel accelera i processi di programmazione e conversione dei fogli di calcolo supportando i formati più diffusi tra cui XLS, XLSX, XLSM, XLSB, XLTX, XLTM, CSV, SpreadsheetML, ODS Permette anche di esportare file Excel in PDF, XPS, HTML, MHTML, Plain Formati di testo e immagini popolari come TIFF, JPG, PNG, BMP e SVG.

Converti Excel in XLSX, ODS, SXC e FODS

L’interconversione del formato del foglio di calcolo richiede solo il caricamento di un foglio di calcolo con un’istanza di Cartella di lavoro e salvare nuovamente nel formato desiderato selezionando il valore appropriato da Salva formato enumerazione.

C# Codice per Conversione Formato File Excel
// load the template file
var workbook = new Aspose.Cells.Workbook("template.xls");
// save as XLSX, ODS, SXC & FODS formats
workbook.Save("output.xlsx", Aspose.Cells.SaveFormat.Xlsx);
workbook.Save("output.ods", Aspose.Cells.SaveFormat.Ods);
workbook.Save("output.scx", Aspose.Cells.SaveFormat.Sxc);
workbook.Save("output.fods", Aspose.Cells.SaveFormat.Fods);
 

Converti Excel in PDF, XPS, HTML e MD

Sono disponibili classi specializzate per controllare il processo di conversione per formati di output specifici come PdfSaveOptions per esportare file Excel come PDF, XpsSaveOptions per la conversione da Excel a XPS, HtmlSaveOptions per rendere Excel come HTML e MarkdownSaveOptions per la conversione da Excel a Markdown.

C# Codice per formati Excel fino a PDF e Web
// load template Excel file from disc
var book = new Aspose.Cells.Workbook("template.xlsx");
// save Excel in PDF/A-1a format
book.Save("output.pdf", new Aspose.Cells.PdfSaveOptions() { Compliance = PdfComplianceVersion.PdfA1a });
// save Excel in XPS with 1 page per worksheet
book.Save("output.xps", new Aspose.Cells.XpsSaveOptions() { OnePagePerSheet = true });
// save Excel in HTML with images as Base64
book.Save("output.html", new Aspose.Cells.HtmlSaveOptions() { ExportImagesAsBase64 = true });
// save Excel in Markdown (MD) while retaining cell formatting
book.Save("output.md", new Aspose.Cells.MarkdownSaveOptions() { FormatStrategy = Cells.CellValueFormatStrategy.CellStyle });
 

Converti JSON in Excel ed Excel in JSON

I dati JSON possono essere importati in un’istanza di Cells lezione con l’aiuto di JsonUtility.ImportData per ulteriore elaborazione o semplice conversione in uno qualsiasi dei formati supportati. Allo stesso modo, Foglio di lavoro i dati possono essere esportati come JSON creando un file Allineare o celle e chiamando il JsonUtility.ExportRangeToJson metodo.

C# Codice per la conversione da JSON a Excel
// create a Workbook object
var workbook = new Cells.Workbook();
var worksheet = workbook.Worksheets[0];
// read JSON data from file
string jsonInput = File.ReadAllText("Data.json");
// set JsonLayoutOptions to treat Arrays as Table
var options = new Cells.Utility.JsonLayoutOptions();
options.ArrayAsTable = true;
// import JSON data to worksheet starting at cell A1
Cells.Utility.JsonUtility.ImportData(jsonInput, worksheet.Cells, 0, 0, options);
// save resultant file in XLSX format
workbook.Save("output.xlsx", Cells.SaveFormat.Auto); 
C# Codice per Excel in JSON Conversione
// load XLSX file with an instance of Workbook
var workbook = new Workbook("template.xlsx", new LoadOptions(Cells.LoadFormat.Auto));
// access CellsCollection of the worksheet containing data to be converted
var cells = workbook.Worksheets[0].Cells;
// create & set ExportRangeToJsonOptions for advanced options
var exportOptions = new Utility.ExportRangeToJsonOptions();
// create a range of cells containing data to be exported
var range = cells.CreateRange(0, 0, cells.LastCell.Row + 1, cells.LastCell.Column + 1);
// export range as JSON data
string jsonData = Cells.Utility.JsonUtility.ExportRangeToJson(range, exportOptions);
// write data file to disc in JSON format
System.IO.File.WriteAllText("output.json", jsonData); 
 

Converti fogli di lavoro Excel in JPG, BMP, PNG e GIF

Ogni foglio di lavoro di un file Excel può essere convertito in diversi formati di immagine impostati da ImageOrPrintOptions.ImageType proprietà. Il valore predefinito è ImageFormat.Bmp.

C# Codice per conversione Excel in immagine
// load template spreadsheet
var workbook = new Aspose.Cells.Workbook("template.xlsx");
// create & set an instance of ImageOrPrintOptions
var options = new Aspose.Cells.Rendering.ImageOrPrintOptions();
options.OnePagePerSheet = true;
// set output image format
options.ImageType = Aspose.Cells.Drawing.ImageType.Jpeg;
// create SheetRender for first worksheet in the collection
var render = new Aspose.Cells.Rendering.SheetRender(workbook.Worksheets[0], options);
// render worksheet to image
render.ToImage(0, "output.jpg");
 

Converti Excel in Word e PowerPoint

È possibile caricare qualsiasi foglio di calcolo e convertirlo nei file Word DOCX e PowerPoint PPTX durante l’utilizzo DocxSaveOptions & PptxSaveOptions classi come illustrato di seguito.

Codice C# per la conversione da Excel a Word e PowerPoint
// load the template file
var workbook = new Aspose.Cells.Workbook("template.xlsx");
// save spreadsheet as DOCX
workbook.Save("output.docx", new Aspose.Cells.DocxSaveOptions());
// save spreadsheet as PPTX
workbook.Save("output.pptx", new Aspose.Cells.PptxSaveOptions());