C# PPT에서 SmartArt 및 주석에서 텍스트 추출 방법

2339 단어 .NETC#PPT
텍스트 추출은 작업과 학습에서 흔히 볼 수 있으며, 이 글에서는 PPT 문서의 SmartArt 및 주석에 있는 텍스트를 C# 코드 언어로 추출하는 방법에 대해 설명합니다.마찬가지로 프로그램에서는 Free Spire를 사용해야 합니다.PPT for .NET, 코드를 작성하기 전에 프로젝트 프로그램에 dll 파일을 인용하고 이름 공간에 추가해야 합니다.
1. SmartArt에서 텍스트 추출
원본 파일:
(슬라이드 2에 텍스트 내용이 포함된 SmartArt 그래픽이 삽입됨)
using Spire.Presentation.Diagrams;
using System.Drawing;
using System.Text;
using System.IO;
using Spire.Presentation;
 
namespaceExtractTextFromSmartArt_PPT
{
    classProgram
    {
        staticvoid Main(string[] args)
        {
            //     Presentation   ,     
            Presentation ppt = newPresentation();
            ppt.LoadFromFile(@"C:\Users\Administrator\Desktop\Sample.pptx");
            //    StringBuilder  
            StringBuilder st = newStringBuilder();
            //      SmartArt  
            for (int i = 0; i  
  



2.


1 , ,

using System;
using System.Text;
using Spire.Presentation;
using System.IO;
 
namespaceExtractTextFromComment_PPT
{
    classProgram
    {
        staticvoid Main(string[] args)
        {
            //     Presentation ,     
            Presentation ppt = newPresentation();
           ppt.LoadFromFile(@"C:\Users\Administrator\Desktop\comment.pptx");
            //    StringBuilder  
            StringBuilder str = newStringBuilder();
            //              
            Comment[] comments =ppt.Slides[0].Comments;
            //      
            for (int i = 0; i  
  


PPT SmartArt , , , !

 

( )


좋은 웹페이지 즐겨찾기