PNG JPG BMP TIFF PPSX
Aspose.Slides  for .NET

C#에서 PPSX 형식 병합

Microsoft 또는 Open Office, Adobe PDF와 같은 소프트웨어를 사용하지 않고 .NET API용 서버측 Aspose.Slides를 사용하여 기본 및 고성능 PPSX 문서 병합.

C#을 사용하여 PPSX 파일을 병합하는 방법

PPSX 파일을 병합하려면 다음을 사용합니다.

.NET용 Aspose.Slides

기능이 풍부하고 강력하며 사용하기 쉬운 문서 조작 및 병합 API인 C# 플랫폼용 API입니다. 열려 있는

NuGet

패키지 관리자, 검색 아포즈.슬라이드 설치합니다. 패키지 관리자 콘솔에서 다음 명령을 사용할 수도 있습니다.

명령


PM> Install-Package Aspose.Slides.NET

C#에서 PPSX 파일을 병합하는 단계

Aspose.Slides for .NET API로 기본 문서 병합 및 연결을 몇 줄의 코드로 수행할 수 있습니다.

  1. 전체 경로로 모든 PPSX 파일을 로드합니다.

  2. 하나의 문서를 기본 파일로 만들기

  3. 파일을 하나씩 연결하고 병합하는 해당 메서드를 호출합니다.

  4. Save() 메서드를 호출하고 파일 이름(전체 경로)과 형식(PPSX)을 매개 변수로 전달합니다.

  5. 이제 Microsoft Office, Adobe PDF 또는 기타 호환 프로그램에서 PPSX 파일을 열고 사용할 수 있습니다.

시스템 요구 사항

당사의 API는 모든 주요 플랫폼 및 운영 체제에서 지원됩니다. 아래 코드를 실행하기 전에 시스템에 다음 전제 조건이 있는지 확인하십시오.

  • Microsoft Windows 또는 .NET Framework, .NET Core, Windows Azure, Mono 또는 Xamarin 플랫폼과 호환되는 OS
  • Microsoft Visual Studio와 같은 개발 환경
  • 프로젝트에서 참조하는 .NET DLL용 Aspose.Slides - 위의 다운로드 버튼을 사용하여 NuGet에서 설치
 

PPSX 파일 병합 - C#

var ps1 = new Presentation("presen1.ppsx");
    var ps2 = new Presentation("presen2.pptx");
    
    //merged Presentation 
    var mp = new Presentation("template.pptx");
    while (mp.Slides.Count > 0){
        mp.Slides.RemoveAt(0);
    }
    // master slide
    var ms = mp.Masters[0];
    
    // The first PPSX presentation is added with its own styles.
    foreach (var slide in ps1.Slides){
        mp.Slides.AddClone(slide);
    }
    
    // The second PPTX presentation is added with template presentation styles using.
    foreach (var slide in ps2.Slides){
        mp.Slides.AddClone(slide, ms, true);
    }
    
    // It is possible to save the merged presentation to any supported format.
    mp.Save("mp.pptx", SaveFormat.Pptx);
    mp.Save("mp.pptx", SaveFormat.Pdf);  

    
 
  • 온라인으로 PDF 파일 병합

    Python에서 PDF를 병합하는 방법

    .NET API용 Aspose.Slides 정보

    Aspose.Slides API는 Microsoft PowerPoint 문서를 읽고, 쓰고, 조작하고, PDF, XPS, HTML, TIFF, ODP 및 기타 다양한 형식으로 변환하는 데 사용할 수 있습니다. 처음부터 새 파일을 만들고 지원되는 관련 형식으로 저장할 수 있습니다. Aspose.Slides는 프레젠테이션, 슬라이드 및 요소를 생성, 구문 분석 또는 조작하기 위한 독립 실행형 API이며 Microsoft 또는 OpenOffice와 같은 소프트웨어에 의존하지 않습니다.

    Online PPSX Merger Live Demos

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

    PPSX PPSX 파일 형식이란 무엇입니까?

    PPSX, Power Point Slide Show, file are created using Microsoft PowerPoint 2007 and above for Slide Show purpose. It is an update to the PPS file format that was supported by Microsoft PowerPoint 97-2003 versions. When a PPSX file is shared with another user and opened, it starts as PowerPoint show unlike PPTX file that opens in editable mode. The sequence of slide show is the same as in the original presentation. All the slides accompany the images, sounds and other embedded media accompany the presentation slides to the PPSX during the slideshow.

    더 읽기

    기타 지원되는 병합 형식

    C#을 사용하여 One은 다음을 포함한 많은 다른 파일 형식을 병합할 수도 있습니다.

    ODP (OpenDocument 프레젠테이션 형식)
    OTP (OpenDocument 표준 형식)
    POT (마이크로소프트 파워포인트 템플릿 파일)
    POTM (마이크로소프트 파워포인트 템플릿 파일)
    POTX (마이크로소프트 파워포인트 템플릿 프레젠테이션)
    PPS (파워포인트 슬라이드 쇼)
    PPSM (매크로 사용 슬라이드 쇼)
    PPT (마이크로소프트 파워포인트 97-2003)
    PPTM (매크로 사용 프레젠테이션 파일)
    PPTX (Open XML 프레젠테이션 형식)