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.

Excel dosyalarına metin filigranı ekleyin ve çeşitli formatlarda çıktı dosyaları oluşturun.

Aslında Aspose.Cells Cloud, Excel dosyalarına metin filigranı eklemek ve çeşitli formatlarda çıktı dosyaları oluşturmak için güçlü bir destek sunar.

Aspose.Cells Bulut, Excel dosyalarına metin filigranı eklemeyi ve çeşitli formatlarda çıktı dosyaları oluşturmayı destekleyen REST API'i sağlar ve birden fazla programlama dili için SDK'lar sunar. Bu programlama dilleri Net, Java, Go, NodeJS, Python vb.'yi içerir.

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();
 
 

Desteklenen Dosya Formatları

 
 
Giriş Formatı
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • Açık ofis: Oranlar, Fodlar, Otlar
  • XML:Elektronik TabloML, Xml
  • Metin: Csv, Tsv, Txt (Sekmeyle Ayrılmış)
  • Ağ: Html, Mhtml
  • Görüntüler: Png, Jpg, Gif, Emf
  • Diğer: Pdf, Json, Markdown
Çıkış biçimi
  • Microsoft Excel: Xls, Xlsx, Xlsb, Xlsm, Xlt, Xltx, Xltm
  • Microsoft Kelime/PowerPoint: Docx, Pptx
  • Açık ofis: Oranlar, Fodlar, Otlar
  • XML:Elektronik TabloML, Xml
  • Metin: Csv, Tsv, Txt (Sekmeyle Ayrılmış)
  • Ağ: Html, Mhtml
  • Görüntüler: Png, Jpg, Gif, Emf, Svg, Tiff
  • Diğer: Pdf, Xps, Dif, Json, Markdown, Sql
 
 
 
 
 

Desteklenen Geliştirme Dilleri