Converti i file Excel in altri formati.

Aspose.Cells Cloud fornisce un solido supporto per la conversione del formato file Excel, un processo noto per la sua complessità. Aspose.Cells Cloud supporta oltre 30 formati di file, tra cui Excel, Pdf, Markdown, Json, XML, Csv, Html e così via.

Aspose.Cells Cloud fornisce REST API che supporta la conversione dei file Excel in vari formati e offre SDK per più linguaggi di programmazione. Questi linguaggi di programmazione includono Net, Java, Go, NodeJS, Python e così via. .

PUT
https://api.aspose.cloud/v3.0/cells/convert
Choose files
Show all parameters
	using Aspose.Cells.Cloud.SDK.Api;
	using Aspose.Cells.Cloud.SDK.Model;
	using Aspose.Cells.Cloud.SDK.Request;
	using Newtonsoft.Json;
	using System;
	using System.IO;
	using System.Collections.Generic;
	CellsApi cellsApi = new CellsApi("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
	var request = new PutConvertWorkbookRequest();
	request.File = new Dictionary<string, Stream>();
	string filePath = "Book1.xlsx";
	Stream fileStream = File.OpenRead(filePath);
	request.File.Add(filePath, fileStream);
	request.format = "pdf";
	request.password = "";
	request.outPath = "";
	request.storageName = "";
	request.checkExcelRestriction = true;
	request.streamFormat = "";
	request.region = "";
	request.pageWideFitOnPerSheet = true;
	request.pageTallFitOnPerSheet = true;
	var result = cellsApi.PutConvertWorkbook(request);
	fileStream.Close();
 
 

Formati di file supportati

 
 
Formato di input
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • Ufficio aperto: Ods, Fods, Ots
  • XML:Foglio di calcoloML, Xml
  • Testo: Csv, Tsv, Txt (delimitato da tabulazioni)
  • Ragnatela: Html, Mhtml
  • Immagini: Png, Jpg, Gif, Emf
  • Altro: Pdf, Json, Markdown
Formato di output
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • Microsoft Parola/PowerPoint: Docx, Pptx
  • Ufficio aperto: Ods, Fods, Ots
  • XML:Foglio di calcoloML, Xml
  • Testo: Csv, Tsv, Txt (delimitato da tabulazioni)
  • Ragnatela: Html, Mhtml
  • Immagini: Png, Jpg, Gif, Emf, Svg, Tiff
  • Altro: Pdf, Xps, Dif, Json, Markdown, Sql
 
 
 
 
 

Lingue di sviluppo supportate