PNG JPG BMP TIFF OTP
Aspose.Slides  for Java

Java’da OTP Formatlarını Birleştirme

Sunucu tarafı Java API’lerini kullanan yerel OTP belge birleştirme.

Java Kullanarak OTP Dosyalarını Birleştirme

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

Aspose.Slides for Java

Java platformu için zengin özelliklere sahip, güçlü ve kullanımı kolay bir birleşme API’si olan API. En son sürümünü doğrudan adresinden indirebilirsiniz.

Maven

ve pom.xml dosyasına aşağıdaki konfigürasyonları ekleyerek Maven tabanlı projenize kurun.

depo


<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java API</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

Bağımlılık


<dependency>
    <groupId>com.aspose</groupId>
    <artifactId>aspose-slides</artifactId>
    <version>version of aspose-slides API</version>
    <classifier>jdk17</classifier>
</dependency>

Java'da OTP Dosyalarını Birleştirme Adımları

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

  1. İlk OTP dosyasını bir Presentation sınıfı örneğiyle yükleyin.

  2. İkinci OTP belgesini bir Presentation sınıfı örneğiyle yükleyin.

  3. İkinci OTP dosyasının her slaydında dolaşın.

  4. Her yinelemede, ilk dosya içeren slaytları eklemek için addClone() öğesini kullanın.

  5. Belirtilen yola kaydetmek için save() yöntemini kullanın

sistem gereksinimleri

Aspose.Slides for Java, 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 JSP/JSF Uygulaması ve Masaüstü Uygulamaları için Java Runtime Environment ile uyumlu bir işletim sistemi.
  • Aspose.Slides for Java’nın en son sürümünü doğrudan şu adresten edinin: Maven .
 

OTP Dosyalarını Birleştirme - Java

// Load first OTP File
Presentation prest1 = new Presentation("prest1.otp");

// Load second OTP File
Presentation prest2 = new Presentation("prest2.otp");

// Merge
for (ISlide slide : prest2.getSlides()) {
	// Merge from source to target
	prest1.getSlides().addClone(slide);
}

// Save the File
prest1.save("merged-presentation.otp", SaveFormat.Otp);  
 
  • PDF Dosyalarını Çevrimiçi Birleştirme

    Python’da PDF Nasıl Birleştirilir

    Aspose.Slides for Java 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 OTP Merger Live Demos

    Merge OTP 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 OTP files.
      It will be merged and concatenated instantly.

    OTP OTP Dosya Biçimi nedir

    Files with .OTP extension represent presentation template files created by applications in OASIS OpenDocument standard format. The contents of such a file include presentation information in the form of slides with text, images, shapes, multimedia content, transition effects and other slide elements. These template files are used for creating new presentations quickly based on the styling information stored in the template itself. OTP files can be created and saved with several different applications such as Impress that comes with OpenOffice suite and Microsoft PowerPoint. The OTP file format is similar to Microsoft PowerPoint template files .POT and .POTX.

    Daha Fazla Oku

    Desteklenen Diğer Birleştirme Formatları

    Java kullanarak, One ayrıca ..

    ODP (OpenDocument Sunum Formatı)
    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)
    PPTM (Makro Etkin Sunum Dosyası)
    PPTX (Açık XML sunum Formatı)