PNG JPG BMP TIFF PPTM
Aspose.Slides  for C++

C++ kullanarak PPTM Dosyalarını Birleştirme

Sunucu tarafı C++ API’lerini kullanarak PPTM belge birleştirme.

C++ Kullanarak PPTM Dosyasını Birleştirme

PPTM dosyasını birleştirmek için kullanacağız

Aspose.Slides for C++

C++ platformu için zengin özelliklere sahip, güçlü ve kullanımı kolay bir belge birleştirme API’si olan API. En son sürümünü doğrudan indirebilirsiniz, sadece açın

NuGet

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

Emretmek


PM> Install-Package Aspose.Slides.Cpp

PPTM Dosyalarını C++'da Birleştirme Adımları

Aspose.Slides for C++ API’lerini birleştiren ve birleştiren temel bir belge, yalnızca birkaç satır kodla yapılabilir.

  1. Her iki PPTM dosyasını da yükleyin.

  2. Her slaytta yineleme yapmak için get_Slides() yöntemini kullanın.

  3. İstediğiniz dosyayla birleştirmek için AddClone işlevini kullanın.

  4. Belirtilen yola kaydetmek için Save() yöntemini kullanın

sistem gereksinimleri

Aspose.Slides for C++ tüm büyük platformlarda ve İşletim Sistemlerinde destekler. Lütfen aşağıdaki ön koşullara sahip olduğunuzdan emin olun.

  • Microsoft Windows veya Windows 32 bit, Windows 64 bit ve Linux 64 bit için C++ Runtime Environment ile uyumlu bir işletim sistemi.
  • Projenizde referans verilen C++ DLL için Aspose.Slides.
 

PPTM Dosyalarını Birleştirme - C++

// The path to the documents directory.
const String sourceFilePath1 = u"SourceFile2.pptm";
const String sourceFilePath2 = u"SourceFile3.pptm";
const String outputFilePath = u"mergedOutput.pptm";

// Instantiate Presentation class
SharedPtr<Presentation> presentation1 = MakeObject<Presentation>(sourceFilePath1);
SharedPtr<Presentation> presentation2 = MakeObject<Presentation>(sourceFilePath2);

for (SharedPtr<ISlide> slide : presentation2->get_Slides()){
	// Merge from source to destination 
	presentation1->get_Slides()->AddClone(slide);
}

// Save the presentation
presentation1->Save(outputFilePath, SaveFormat::Pptm);  
 
  • PDF Dosyalarını Çevrimiçi Birleştirme

    Python’da PDF Nasıl Birleştirilir

    Aspose.Slides for C++ 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.

    Online PPTM Merger Live Demos

    Merge PPTM documents right now by visiting our Live Demos website . The live demo has the following benefits

      No need to download Aspose API.
      No need to write any code.
      Just upload your PPTM files.
      It will be merged and concatenated instantly.

    PPTM PPTM Dosya Biçimi nedir

    Files with PPTM extension are Macro-enabled Presentation files that are created with Microsoft PowerPoint 2007 or higher versions. They are similar to PPTX files with the difference that the lateral can't execute macros though they can contain macros. PPTM files can be edited by opening them in Microsoft PowerPoint and updating the contents. Another similar format is PPSM but it is read-only by default and starts the slideshow when opened. PPTM, like PPTX, contains slides for different presentation elements like text, images, videos, graphs and other related material.

    Daha Fazla Oku

    Desteklenen Diğer Birleştirme Formatları

    C++ kullanarak One, aşağıdakiler de dahil olmak üzere diğer birçok dosya biçimini birleştirebilir.

    ODP (OpenDocument Sunum Formatı)
    OTP (OpenDocument Standart Biçimi)
    POT (Microsoft PowerPoint Şablon Dosyaları)
    POTM (Microsoft PowerPoint Şablon Dosyası)
    POTX (Microsoft PowerPoint Şablonu Sunumu)
    PPS (PowerPoint Slayt Gösterisi)
    PPSM (Makro Etkin Slayt Gösterisi)
    PPSX (PowerPoint Slayt Gösterisi)
    PPT (Microsoft PowerPoint 97-2003)
    PPTX (Açık XML sunum Formatı)