C++에서 PPT를 Word로 변환

Microsoft PowerPoint 또는 Office 없이 C++ 코드를 사용하여 PowerPoint를 Word로 변환하기 위한 강력한 크로스 플랫폼 C++ API

Aspose.Slides 및 Aspose.Words를 사용하여 PowerPoint를 Word로 변환

Aspose.Slides for C++ 및 [Aspose.Words for C++]( https://products.aspose.com/ words/cpp/)는 PowerPoint 프레젠테이션, Word 문서 및 기타 파일을 조작하고 변환하는 데 사용되는 강력한 C++ 라이브러리입니다. PowerPoint를 Word로 변환하면 기본적으로 프레젠테이션 슬라이드의 내용이 Word 문서의 페이지로 이동됩니다.

C++에서 PowerPoint를 Word로 변환

몇 줄의 코드만으로 PPT를 Word로 빠르게 변환할 수 있습니다.

PowerPoint를 Word로 변환하기 위한 C++ 코드

auto presentation = MakeObject<Presentation>();
auto doc = MakeObject<Aspose::Words::Document>();
auto builder = MakeObject<Aspose::Words::DocumentBuilder>(doc);

for (const auto& slide : presentation->get_Slides())
{
    // generates and inserts slide image
    auto bitmap = slide->GetThumbnail(1.0f, 1.0f);
    builder->InsertImage(bitmap);

    // inserts slide's texts
    for (const auto& shape : slide->get_Shapes())
    {
        if (ObjectExt::Is<AutoShape>(shape))
        {
            auto autoShape = System::AsCast<AutoShape>(shape);
            builder->Writeln(autoShape->get_TextFrame()->get_Text());
        }
    }

    builder->InsertBreak(Aspose::Words::BreakType::PageBreak);
}

PPT를 Word로 변환하는 방법

  1. **C++**용 Aspose.Slides 및 C++**용 **Aspose.Words 설치

  2. Presentation 클래스와 Doc 클래스의 인스턴스를 만듭니다.

  3. Word로 변환하려는 PPT 프레젠테이션을 로드합니다.

  4. 슬라이드의 내용을 기반으로 이미지와 텍스트를 생성합니다.

  5. 결과 Word 문서를 저장합니다.

무료 온라인 변환기

Python에서 PPT를 HTML로 변환하는 방법

기타 지원되는 변환

PowerPoint를 다른 형식의 파일로 변환할 수도 있습니다.