Ai  Assistant
Hello, this is the AI ​​assistant, which can quickly help you perform operations such as Summarize, BuildSpreadsheet, GetCode, etc. on the uploaded Excel files.

Agregue marcas de agua de texto a archivos Excel y genere archivos de salida en varios formatos.

De hecho, Aspose.Cells Cloud ofrece un sólido soporte para agregar marcas de agua de texto a archivos Excel y generar archivos de salida en varios formatos.

Aspose.Cells Cloud proporciona REST API que admite agregar marcas de agua de texto a archivos Excel y generar archivos de salida en varios formatos y ofrece SDK para múltiples lenguajes de programación. Estos lenguajes de programación incluyen Net, Java, Go, NodeJS, Python, etc.

POST
https://api.aspose.cloud/v3.0/cells/watermark
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 PostWatermarkRequest();
	request.File = new Dictionary<string, Stream>();
	string filePath = "Book1.xlsx";
	Stream fileStream = File.OpenRead(filePath);
	request.File.Add(filePath, fileStream);
	request.text = "";
	request.color = "";
	request.outFormat = "";
	request.password = "";
	request.checkExcelRestriction = true;
	request.region = "";
	var result = cellsApi.PostWatermark(request);
	fileStream.Close();
 
 

Formatos de archivo admitidos

 
 
Formato de entrada
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • Oficina abierta: Ods, Fods, Ots
  • XML:Hoja de cálculoML, XML
  • Texto: Csv, Tsv, Txt (delimitado por tabulaciones)
  • Web: HTML, HTML
  • Imágenes: Png, Jpg, Gif, Emf
  • Otro: Pdf, Json, rebajas
Formato de salida
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • Microsoft Palabra/PowerPoint: Docx, Pptx
  • Oficina abierta: Ods, Fods, Ots
  • XML:Hoja de cálculoML, XML
  • Texto: Csv, Tsv, Txt (delimitado por tabulaciones)
  • Web: HTML, HTML
  • Imágenes: Png, Jpg, Gif, Emf, Svg, Tiff
  • Otro: Pdf, Xps, Dif, Json, Rebaja, Sql
 
 
 
 
 

Idiomas de desarrollo compatibles