Java에서 PPTX를 Word로 변환
Microsoft PowerPoint 또는 Office 없이 Java 코드를 사용하여 PowerPoint를 Word로 변환하기 위한 강력한 교차 플랫폼 Java API
Aspose.Slides 및 Aspose.Words를 사용하여 PowerPoint를 Word로 변환
Aspose.Slides for Java 및 [Aspose.Words for Java]( https://products.aspose.com/ words/java/)는 PowerPoint 프레젠테이션, Word 문서 및 기타 파일을 조작하고 변환하는 데 사용되는 강력한 Java 라이브러리입니다. PowerPoint를 Word로 변환하면 기본적으로 프레젠테이션 슬라이드의 내용이 Word 문서의 페이지로 이동됩니다.
Java에서 PowerPoint를 Word로 변환
몇 줄의 코드만으로 빠르게 PPTX를 Word로 변환할 수 있습니다.
PowerPoint를 Word로 변환하기 위한 Java 코드
Presentation pres = new Presentation(inputPres);
try {
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
for (ISlide slide : pres.getSlides())
{
// generates and inserts slide image
BufferedImage bitmap = slide.getThumbnail(1, 1);
builder.insertImage(bitmap);
// inserts slide's texts
for (IShape shape : slide.getShapes())
{
if (shape instanceof AutoShape)
{
builder.writeln(((AutoShape)shape).getTextFrame().getText());
}
}
builder.insertBreak(BreakType.PAGE_BREAK);
}
doc.save(outputDoc);
} finally {
if (pres != null) pres.dispose();
}
PPTX를 Word로 변환하는 방법
Aspose.Slides for Java 및 Aspose.Words for Java 설치
Presentation 클래스와 Doc 클래스의 인스턴스를 만듭니다.
Word로 변환하려는 PPTX 프레젠테이션을 로드합니다.
슬라이드의 내용을 기반으로 이미지와 텍스트를 생성합니다.
결과 Word 문서를 저장합니다.
무료 온라인 변환기
기타 지원되는 변환
PowerPoint를 다른 형식의 파일로 변환할 수도 있습니다.