C++를 사용하여 PowerPoint 프레젠테이션에서 슬라이드 복제

슬라이드 복사본을 만들어야 하는 상황이 있을 수 있습니다. 예를 들어 기존 슬라이드와 유사한 새 슬라이드를 만들어야 합니다. 이러한 경우 동일한 프레젠테이션이나 다른 프레젠테이션에서 슬라이드를 복제하고 요구 사항에 따라 수정할 수 있습니다. 이를 위해 이 기사에서는 C++를 사용하여 동일한 PowerPoint 프레젠테이션 또는 다른 PowerPoint 프레젠테이션에 슬라이드를 복제하는 방법을 설명합니다.

PowerPoint 슬라이드 복제를 위한 C++ API

Aspose.Slides for C++은 PowerPoint 프레젠테이션 작업을 위한 C++ API입니다. 추가 소프트웨어 없이 PowerPoint 파일을 만들고 읽고 수정할 수 있습니다. 또한 API는 PowerPoint 슬라이드 복제를 지원합니다. NuGet을 통해 API를 설치하거나 다운로드 섹션에서 직접 다운로드할 수 있습니다.

PowerPoint 프레젠테이션 내에서 슬라이드 복제

프레젠테이션의 끝이나 특정 위치에 슬라이드를 복제할 수 있습니다. 다음 섹션에서는 코드 샘플을 사용하여 이러한 시나리오를 모두 살펴보겠습니다.

C++를 사용하여 PowerPoint 프레젠테이션의 끝까지 슬라이드 복제

다음은 PowerPoint 프레젠테이션의 끝에 슬라이드를 복제하는 단계입니다.

다음 샘플 코드는 C++를 사용하여 PowerPoint 프레젠테이션의 끝에 슬라이드를 복제하는 방법을 보여줍니다.

// 파일 경로
const String sourceFilePath = u"SourceDirectory\\Slides\\SamplePresentation.pptx";
const String outputFilePath = u"OutputDirectory\\CloneSlideAtEnd_out.pptx";

// 프레젠테이션 로드
auto presentation = System::MakeObject<Presentation>(sourceFilePath);

// 슬라이드 검색
auto slides = presentation->get_Slides();

// 슬라이드 클론 추가
slides->AddClone(presentation->get_Slides()->idx_get(0));

// 프레젠테이션 저장
presentation->Save(outputFilePath, SaveFormat::Pptx);

C++를 사용하여 특정 위치에 슬라이드 복제

다음은 C++를 사용하여 슬라이드를 특정 위치에 복제하는 단계입니다.

다음 샘플 코드는 C++를 사용하여 슬라이드를 특정 위치에 복제하는 방법을 보여줍니다.

// 파일 경로
const String sourceFilePath = u"SourceDirectory\\Slides\\SamplePresentation.pptx";
const String outputFilePath = u"OutputDirectory\\CloneSlideAtSpecificIndex_out.pptx";

// 프레젠테이션 로드
auto presentation = System::MakeObject<Presentation>(sourceFilePath);

// 슬라이드 검색
auto slides = presentation->get_Slides();

// 0 인덱스에 클론 삽입
slides->InsertClone(0, presentation->get_Slides()->idx_get(1));

// 프레젠테이션 저장
presentation->Save(outputFilePath, SaveFormat::Pptx);

다른 PowerPoint 프레젠테이션에 슬라이드 복제

다른 프레젠테이션의 끝이나 특정 위치에 슬라이드를 복제할 수 있습니다. 다음 섹션에서는 코드 샘플을 사용하여 이러한 시나리오를 모두 살펴보겠습니다.

C++를 사용하여 다른 PowerPoint 프레젠테이션의 끝으로 슬라이드 복제

다음은 다른 PowerPoint 프레젠테이션의 끝에 슬라이드를 복제하는 단계입니다.

다음 샘플 코드는 C++를 사용하여 다른 PowerPoint 프레젠테이션의 끝에 슬라이드를 복제하는 방법을 보여줍니다.

// 파일 경로
const String sourceFilePath = u"SourceDirectory\\Slides\\SamplePresentation.pptx";
const String destinationFilePath = u"SourceDirectory\\Slides\\SamplePresentation2.pptx";
const String outputFilePath = u"OutputDirectory\\CloneSlideToOtherPresentationAtEnd_out.pptx";

// 소스 프레젠테이션 로드
auto sourcePresentation = System::MakeObject<Presentation>(sourceFilePath);

// 대상 프레젠테이션 로드
auto destinationPresentation = System::MakeObject<Presentation>(destinationFilePath);

// 대상 프레젠테이션의 슬라이드 가져오기
auto destinationSlides = destinationPresentation->get_Slides();

// 원본 프레젠테이션에서 대상 프레젠테이션 끝까지 슬라이드 추가
destinationSlides->AddClone(sourcePresentation->get_Slides()->idx_get(0));

// 대상 프레젠테이션 저장
destinationPresentation->Save(outputFilePath, SaveFormat::Pptx);

C++를 사용하여 다른 PowerPoint 프레젠테이션의 특정 위치로 슬라이드 복제

다음은 다른 PowerPoint 프레젠테이션의 특정 위치에 슬라이드를 복제하는 단계입니다.

다음 샘플 코드는 C++를 사용하여 다른 PowerPoint 프레젠테이션의 특정 위치에 슬라이드를 복제하는 방법을 보여줍니다.

// 파일 경로
const String sourceFilePath = u"SourceDirectory\\Slides\\SamplePresentation.pptx";
const String destinationFilePath = u"SourceDirectory\\Slides\\SamplePresentation2.pptx";
const String outputFilePath = u"OutputDirectory\\CloneSlideToOtherPresentationAtSpecificIndex_out.pptx";

// 소스 프레젠테이션 로드
auto sourcePresentation = System::MakeObject<Presentation>(sourceFilePath);

// 대상 프레젠테이션 로드
auto destinationPresentation = System::MakeObject<Presentation>(destinationFilePath);

// 대상 프레젠테이션의 슬라이드 가져오기
auto destinationSlides = destinationPresentation->get_Slides();

// 원본 프레젠테이션에서 대상 프레젠테이션의 두 번째 인덱스까지 슬라이드 삽입
destinationSlides->InsertClone(2, sourcePresentation->get_Slides()->idx_get(0));

// 대상 프레젠테이션 저장
destinationPresentation->Save(outputFilePath, SaveFormat::Pptx);

무료 라이선스 받기

평가 제한 없이 API를 사용해 보려면 무료 임시 라이선스를 요청할 수 있습니다.

결론

이 기사에서는 C++를 사용하여 PowerPoint 프레젠테이션에서 슬라이드를 복제하는 방법을 배웠습니다. 특히 동일한 프레젠테이션이나 다른 프레젠테이션의 끝이나 특정 위치에 슬라이드를 복제하는 방법을 배웠습니다. Aspose.Slides for C++는 PowerPoint 파일 작업을 위한 많은 추가 기능을 제공하는 강력한 API입니다. 공식 문서에서 API를 자세히 살펴볼 수 있습니다. 문의 사항이 있는 경우 무료 지원 포럼에 문의해 주십시오.

또한보십시오