PPTX를 ODP 및 OpenDocument 형식을 포함한 다른 인기 있는 파일 형식으로 변환하는 단계 학습. Python SDK를 사용하여 mspowerpoint 파일을 ODP 형식으로 저장하세요.

Microsoft PowerPoint

Microsoft PowerPoint를 OpenDocument로 / MS PowerPoint (PPTX)를 ODP 형식으로 변환하기

PPTX 파일은 Microsoft PowerPoint 애플리케이션을 위한 주요 PowerPoint 형식 중 하나입니다. 반면 OpenDocument Presentation (ODP)은 Apache OpenOffice에서 지원하는 인기 있는 형식으로, 텍스트, 이미지, 미디어 및 전환 효과를 포함할 수 있는 일련의 슬라이드를 포함합니다. 따라서 OpenOffice의 인기 때문에, Python SDK를 사용하여 Microsoft PowerPoint (PPTX)를 OpenDocument 형식으로 변환하는 방법을 배우겠습니다.

  • MS PowerPoint 처리 API
  • [Microsoft PowerPoint를 ODP로 변환하는 방법은 다음과 같습니다. Python을 사용하여 변환하려면, python-pptxodfpy 패키지를 사용할 수 있습니다. 다음은 간단한 예제 코드입니다.
from pptx import Presentation
from odf.opendocument import OpenDocumentPresentation
from odf.dc import Title
from odf.draw import Frame, Image, TextBox, Page
from odf.table import Table, TableRow, TableCell

def convert_pptx_to_odp(pptx_file, odp_file):
    prs = Presentation(pptx_file)
    doc = OpenDocumentPresentation()

   for slide in prs.slides:
        page = Page()
        doc.text.addElement(page)

       for shape in slide.shapes:
            if hasattr(shape, "text"):
                # 텍스트 박스인 경우
                textbox = TextBox()
                textbox.setAttribute("text:anchor-type](#Convert-Microsoft-PowerPoint-to-ODP-using-Python)
* [PPTX 파일을 ODP로 변환하는 cURL 명령어](#PPTX-File-to-ODP-using-cURL-Command)

## MS PowerPoint 처리 API {#MS-PowerPoint-Processing-API}

[Aspose.Slides Cloud][2]는 프로그래밍 방식으로 PowerPoint 프레젠테이션을 생성, 편집 및 다른 지원되는 형식으로 변환하는 기능을 제공합니다. 이제 Python 애플리케이션에서 동일한 기능을 구현하기 위해 [Aspose.Slides Cloud SDK for Python][3]을 사용할 수 있습니다(Cloud API의 래퍼).[PIP][4] 및 [GitHub][5]에서 다운로드할 수 있습니다. SDK를 설치하려면 명령줄 터미널에서 다음 명령을 실행하십시오.

pip install asposeslidescloud


설치 후, 개인화된 ClientID 및 ClientSecret 세부정보를 얻어야 합니다. 따라서 첫 번째 단계는 [Aspose.Cloud dashboard][6]를 방문하여 계정을 만드는 것입니다.

## Microsoft PowerPoint를 ODP로 변환하기 위해 Python을 사용하세요. {#Convert-Microsoft-PowerPoint-to-ODP-using-Python}

아래 주어진 예제에서는 클라우드 저장소에서 Microsoft PowerPoint (PPTX 파일)를 로드한 후, 결과 ODP를 동일한 클라우드 저장소에 저장합니다. 변환을 수행하기 위해 아래 지침을 따르십시오.

* Configuration 클래스의 객체를 생성하세요.
* SlidesApi 인스턴스를 초기화하면서 Configuration 객체를 인자로 전달합니다.
* 이제 [savepresentation(..)][7] 메서드를 호출하세요. 이 메서드는 입력 PPTX의 이름, 출력 형식 값을 ODP로, 결과 파일의 출력 경로 정보와 변환할 슬라이드를 지정하는 선택적 매개변수를 받습니다.

자세한 예시를 보려면 https://github.com/aspose-slides-cloud/aspose-slides-cloud-python 를 방문하시기 바랍니다.

https://dashboard.aspose.cloud/ 에서 클라이언트 자격 증명을 가져오세요.

def PPTXtoODP(): try: # Aspose.Slides Cloud 인스턴스를 초기화합니다. configuration = asposeslidescloud.Configuration() configuration.app_sid = “bbf94a2c-6d7e-4020-b4d2-b9809741374e” configuration.app_key = “1c9379bb7d701c26cc87e741a29987bb” slidesApi = asposeslidescloud.SlidesApi(configuration)

    # API를 호출하여 PPTX를 ODP 형식으로 변환하고 출력을 클라우드 저장소에 저장합니다.
    # slides는 선택적 매개변수이며 이 예제에서는 슬라이드 2와 3만 변환됩니다. 생략하면 모든 슬라이드가 변환됩니다.
    request = slidesApi.save_presentation(name='test-unprotected.pptx',format='odp',
                                              out_path="ConvertedFile.odp", slides= '2,3')
    print("Result {0}".format(request))
  except ApiException as e:
    print("Exception when calling SlidesApi->save_presentation: %s\n" % e)

위의 예제에서 사용된 샘플 파일을 [test-unprotected.pptx][8] 및 [ConvertedFile.odp][9]에서 다운로드해 주십시오.

### 로컬 드라이브에서 PPTX 로드하기

이 시나리오에서는 입력 PPTX 파일이 로컬 드라이브에서 로드되고 ODP 형식으로 변환됩니다. 위의 시나리오와 유사하게, 결과 파일은 클라우드 저장소에 저장됩니다.

* Configuration 클래스의 객체를 먼저 생성하십시오.
* 둘째로, Configuration 객체를 인수로 전달하면서 SlidesApi 인스턴스를 초기화하십시오.
* 지금 입력 PPTX를 파일 객체로 로드하세요.
* 마지막으로, 메서드 [convertandsave(..)][10] 를 호출하고 입력 PPTX, 출력 형식을 ODP, 출력 경로 세부 정보를 제공합니다. 이 시나리오에서는 선택적 매개변수 Slides에 대해 값을 제공하지 않으므로 모든 슬라이드가 기본적으로 변환됩니다.

자세한 예제는 https://github.com/aspose-slides-cloud/aspose-slides-cloud-python 를 방문해 주세요.

https://dashboard.aspose.cloud/ 에서 클라이언트 자격 증명을 가져옵니다.

def PPTXtoODP(): try: # Aspose.Slides Cloud 인스턴스를 초기화합니다. configuration = asposeslidescloud.Configuration() configuration.app_sid = “bbf94a2c-6d7e-4020-b4d2-b9809741374e” configuration.app_key = “1c9379bb7d701c26cc87e741a29987bb” slidesApi = asposeslidescloud.SlidesApi(configuration)

    # API를 호출하여 PPTX를 ODP 형식으로 변환하고 출력을 클라우드 저장소에 저장합니다.
    # 슬라이드 매개변수에 대한 값이 제공되지 않았기 때문에 기본적으로 모든 슬라이드가 변환됩니다. 
    request = slidesApi.convert_and_save(document= file,format='odp',out_path="Resultant.odp")

    # print response code
    print("Result {0}".format(request))
  except ApiException as e:
    print("Exception when calling SlidesApi->convert_and_save: %s\n" % e)

## PPTX 파일을 ODP로 변환하는 cURL 명령 {#PPTX-File-to-ODP-using-cURL-Command}

Aspose.Slides Cloud의 REST 아키텍처 덕분에 cURL 명령어를 통해서도 접근할 수 있습니다. 따라서 cURL 명령어를 사용하여 Aspose.Slides API로 PPTX 파일을 ODP 형식으로 변환할 수 있습니다. 그러나 먼저 클라이언트 자격 증명에 기반하여 JWT 액세스 토큰을 생성해야 합니다. 토큰을 생성하기 위해 다음 명령어를 실행하십시오.

curl -v “https://api.aspose.cloud/connect/token"
-X POST
-d “grant_type=client_credentials&client_id=bbf94a2c-6d7e-4020-b4d2-b9809741374e&client_secret=1c9379bb7d701c26cc87e741a29987bb”
-H “Content-Type: application/x-www-form-urlencoded”
-H “Accept: application/json”


이제 다음 명령을 실행하여 클라우드 저장소에서 PPT 파일을 로드하고 ODP 형식으로 변환하십시오. 결과적으로 생성된 ODP 파일도 클라우드 저장소에 저장됩니다.

curl -v -X PUT “https://api.aspose.cloud/v3.0/slides/test-unprotected.ppt/Odp?outPath=ConvertedFile.odp"
-H “accept: application/json”
-H “authorization: Bearer
-H “Content-Type: application/json”
-d{}




MSPowerPoint 미리보기

Image 1:- PPT to ODP 변환 미리보기.

위 예제에서 사용된 샘플 PPT 파일은 [test-unprotected.ppt][11]에서 다운로드할 수 있으며, 결과 ODP는 [ConvertedFile-New.odp][12]에서 다운로드할 수 있습니다. ## 결론 이 기사에서는 Microsoft PowerPoint (PPTX)를 Python 코드 조각을 사용하여 OpenDocument 형식으로 변환하는 방법에 대한 세부정보를 논의하였습니다. 유사하게, cURL 명령을 사용하여 msPowerpoint를 ODP로 저장하는 단계도 배웠습니다. PPTX를 PDF로 변환하는 것도 상당히 간단합니다. Python SDK의 전체 소스 코드는 [GitHub][13]에서 다운로드할 수 있습니다. API의 다른 흥미로운 기능에 대해 더 배우려면 [Programmers Guide][14]를 방문하십시오. ## 관련 블로그 다음 링크를 방문하여 자세한 내용을 확인하세요: * [PPTX를 PDF로, PDF를 PPT로 변환하는 파이썬 코드](https://blog.aspose.cloud/ko/slides/pptx-to-pdf-and-pdf-to-ppt-conversion-in-python/) * [파이썬에서 PPT 병합 또는 분할](https://blog.aspose.cloud/ko/slides/how-to-merge-ppt-in-cloud-using-python-split-ppt/) * [Python으로 PPT를 JPG로 변환합니다. Python을 사용하여 PowerPoint를 이미지로 저장합니다.](https://blog.aspose.cloud/ko/slides/convert-ppt-to-jpg-using-python/) [2]: https://products.aspose.cloud/slides/curl/ [3]: https://products.aspose.cloud/slides/python/ [4]: https://pypi.org/project/asposeslidescloud/ [5]: https://github.com/aspose-slides-cloud/aspose-slides-cloud-python [6]: https://dashboard.aspose.cloud/ [7]: https://apireference.aspose.cloud/slides/#/Document/SavePresentation [8]: https://github.com/aspose-slides-cloud/aspose-slides-cloud-python/blob/master/TestData/test-unprotected.pptx [9]: https://www.dropbox.com/scl/fi/di3s0ej558cqj394fhfc1/ConvertedFile.odp?dl=0&rlkey=p5f1kf45rewbv21fewzh3ihr0 [10]: https://apireference.aspose.cloud/slides/#/Document/ConvertAndSave [11]: https://www.dropbox.com/scl/fi/h0vwi52779yshs59gozn8/test-unprotected.ppt?dl=0&rlkey=2tvlvjgbzfqyyyh4s8nwxywa5 [12]: https://www.dropbox.com/scl/fi/0seku5gme8p15yua1z5ob/ConvertedFile-New.odp?dl=0&rlkey=4rybg49bcge2ysbzdp71jqg21 [13]: https://github.com/aspose-slides-cloud/aspose-slides-cloud-python [14]: https://docs.aspose.cloud/slides/developer-guide/