PPTX DOCX XLSX PDF ODP
Aspose.Slides  for .NET
PPT

C# ile PPT’ye Metin Filigranı ekleyin

Sunucu tarafı API’lerini kullanarak PPT dosyalarına filigran eklemek için kendi .NET uygulamalarınızı oluşturun.

C# Kullanarak PPT Dosyasını Filigran Etme

PPT dosyasını filigranlamak için kullanacağız

Aspose.Slides for .NET

C# platformu için zengin özelliklere sahip, güçlü ve kullanımı kolay bir belge işleme API’si olan API. Açık

NuGet

paket yöneticisi, ara Aspose.Slides ve yükleyin. Paket Yöneticisi Konsolundan aşağıdaki komutu da kullanabilirsiniz.

Emretmek


PM> Install-Package Aspose.Slides.NET

C# ile PPT'ye Filigran Ekleme Adımları

Aşağıdaki iş akışını kendi ortamınızda denemek için aspose.slides.dll gerekir.

  1. Presentation sınıfının bir örneğini oluşturun

  2. Ana sunumu seçin

  3. AddAutoShape kullanarak şekil türü ekleyin

  4. AddTextFrame kullanarak filigran metni ekleyin

sistem gereksinimleri

Aspose.Slides for .NET tüm büyük işletim sistemlerinde desteklenir. Sadece aşağıdaki ön koşullara sahip olduğunuzdan emin olun.

  • Microsoft Windows veya .NET Framework, .NET Core, Windows Azure, Mono veya Xamarin Platformları ile uyumlu bir işletim sistemi.
  • Microsoft Visual Studio gibi geliştirme ortamı.
  • Projenizde referans verilen Aspose.Slides for .NET.
 

PPT'ye Filigran Ekleme - C#


// create a Presentation from scratch
using (var presentation = new Aspose.Slides.Presentation())
{
    // get the Master Slide to add watermark on all slides
    var master = presentation.Masters[0];
    // add a new shape using IShapeColection.AddAutoShape
    var shape = master.Shapes.AddAutoShape(Aspose.Slides.ShapeType.Triangle, 0, 0, 0, 0);
    // set watermark text
    shape.AddTextFrame("CONFIDENTIAL");
    // save presentation in PPT format
    presentation.Save("output.ppt", Aspose.Slides.Export.SaveFormat.Ppt);
}  
 
  • Aspose.Slides for .NET API Hakkında

    Aspose.Slides API, Microsoft PowerPoint belgelerini okumak, yazmak, değiştirmek ve PDF, XPS, HTML, TIFF, ODP ve diğer çeşitli formatlara dönüştürmek için kullanılabilir. Sıfırdan yeni dosyalar oluşturabilir ve bunları ilgili desteklenen biçimlerde kaydedebilirsiniz. Aspose.Slides, sunumlar, slaytlar ve öğeler oluşturmak, ayrıştırmak veya değiştirmek için bağımsız bir API’dir ve Microsoft veya OpenOffice gibi herhangi bir yazılıma bağlı değildir.

    Watermark PPT via Online App

    Add watermark to PPT documents by visiting our Live Demos website . The live demo has the following benefits

      No need to download or setup anything
      No need to write any code
      Just upload your PPT file, set your watermark and hit "Add" button
      Instantly get the download link for the resultant file

    PPT PPT Dosya Biçimi nedir

    A file with PPT extension represents PowerPoint file that consists of a collection of slides for displaying as SlideShow. It specifies the Binary File Format used by Microsoft PowerPoint 97-2003. A PPT file can contain several different types of information such as text, bulleted points, images, multimedia and other embedded OLE objects. Microsoft came up with newer file format for PowerPoint, known as PPTX, from 2007 onwards that is based on Office OpenXML and is different from this binary file format. Several other application programs such as OpenOffice Impress and Apple Keynote can also create PPT files.

    Daha Fazla Oku

    Desteklenen Diğer Filigran Formatları

    C# kullanarak, dahil olmak üzere farklı formatları kolayca filigranlayabilirsiniz.

    PPTX (Açık XML sunum Formatı)