python-pptx
-
Python/python-pptx 사용자 가이드 목차코딩/Python 2024. 6. 12. 16:07
Python/python-pptx 사용자 가이드 - 1. 소개Python/python-pptx 사용자 가이드 - 2. 설치Python/python-pptx 사용자 가이드 - 3. 시작Python/python-pptx 사용자 가이드 - 4. 프리젠테이션Python/python-pptx 사용자 가이드 - 5. 슬라이드Python/python-pptx 사용자 가이드 - 6. ShapesPython/python-pptx 사용자 가이드 - 7. AutoShapesPython/python-pptx 사용자 가이드 - 8. Placeholder 1Python/python-pptx 사용자 가이드 - 9. Placeholder 2Python/python-pptx 사용자 가이드 - 10. TextPython/python-p..
-
Python/python-pptx 사용자 가이드 - 15. Concepts코딩/Python 2024. 6. 12. 15:21
https://python-pptx.readthedocs.io/en/latest/user/concepts.htmlConceptspython-pptx is completely object-oriented, and in general any operations you perform with it will be on an object. The root object for a presentation is Presentation. API details are provided on the modules pages, but here are some basics to get you started, especially some relationships you might find surprising at first.A p..
-
Python/python-pptx 사용자 가이드 - 14. Cases코딩/Python 2024. 6. 12. 15:19
https://python-pptx.readthedocs.io/en/latest/user/use-cases.htmlUse casesThe use case that drove me to begin work on this library has been to automate the building of slides that are tedious to compose by hand. As an example, consider the task of composing a slide with an array of 10 headshot images of folks in a particular department, with the person’s name and title next to their picture. Afte..
-
Python/python-pptx 사용자 가이드 - 13. Notes코딩/Python 2024. 6. 12. 15:18
https://python-pptx.readthedocs.io/en/latest/user/notes.htmlWorking with Notes SlidesA slide can have notes associated with it. These are perhaps most commonly encountered in the notes pane, below the slide in PowerPoint “Normal” view where it may say “Click to add notes”.The notes added here appear each time that slide is present in the main pane. They also appear in Presenter View and in Notes..
-
Python/python-pptx 사용자 가이드 - 12. Tables코딩/Python 2024. 6. 12. 15:16
https://python-pptx.readthedocs.io/en/latest/user/table.htmlWorking with tablesPowerPoint allows text and numbers to be presented in tabular form (aligned rows and columns) in a reasonably flexible way. A PowerPoint table is not nearly as functional as an Excel spreadsheet, and is definitely less powerful than a table in Microsoft Word, but it serves well for most presentation purposes.PowerPoin..
-
Python/python-pptx 사용자 가이드 - 11. Charts코딩/Python 2024. 6. 12. 15:12
https://python-pptx.readthedocs.io/en/latest/user/charts.htmlWorking with chartspython-pptx supports adding charts and modifying existing ones. Most chart types other than 3D types are supported.python-pptx는 차트 추가 및 기존 차트 수정을 지원한다. 3D 유형을 제외한 대부분의 차트 유형이 지원된다.Adding a chartThe following code adds a single-series column chart in a new presentation:다음 코드는 새 프레젠테이션에 단일 계열 세로 막대형 차트를 추가한다.from pptx ..
-
Python/python-pptx 사용자 가이드 - 10. Text코딩/Python 2024. 6. 12. 15:09
https://python-pptx.readthedocs.io/en/latest/user/text.htmlWorking with textAuto shapes and table cells can contain text. Other shapes can’t. Text is always manipulated the same way, regardless of its container.자동 도형과 표 셀에는 텍스트가 포함될 수 있다. 다른 도형은 할 수 없다. 텍스트는 컨테이너에 관계없이 항상 동일한 방식으로 조작된다.Text exists in a hierarchy of three levels:텍스트는 세 가지 수준의 계층 구조로 존재한다.Shape.text_frameTextFrame.paragraphs_Parag..
-
Python/python-pptx 사용자 가이드 - 9. Placeholder 2코딩/Python 2024. 6. 12. 15:05
https://python-pptx.readthedocs.io/en/latest/user/placeholders-using.htmlWorking with placeholdersPlaceholders can make adding content a lot easier. If you’ve ever added a new textbox to a slide from scratch and noticed how many adjustments it took to get it the way you wanted you understand why. The placeholder is in the right position with the right font size, paragraph alignment, bullet style..