PPT
PPTX
ODP
POT
ppsx
PPTX
Python का उपयोग करके PPTX प्रस्तुतिकरण से पाठ और छवियां निकालें
सर्वर-साइड API का उपयोग करके PowerPoint से पाठ, छवि, वीडियो और ऑडियो फ़ाइलें निकालने के लिए अपना स्वयं का Python एप्लिकेशन बनाएं.
Python के माध्यम से PPTX प्रस्तुतिकरण से पाठ निकालें
संपूर्ण प्रस्तुति से पाठ को स्कैन करने के लिए, GetAllTextFrames स्थिर विधि का उपयोग करें, जिसे SlideUtil वर्ग द्वारा प्रदर्शित किया गया है। नीचे दिया गया कोड मास्टर स्लाइड सहित प्रस्तुति से पाठ और स्वरूपण जानकारी को स्कैन करता है।
Python का उपयोग करके PPTX प्रस्तुतिकरण से टेक्स्ट निकाला जा रहा है
import aspose.slides as slides
#Instatiate Presentation class that represents a PPTX file
with slides.Presentation("pres.pptx") as pptxPresentation:
# Get an Array of ITextFrame objects from all slides in the PPTX
textFramesPPTX = slides.util.SlideUtil.get_all_text_frames(pptxPresentation, True)
# Loop through the Array of TextFrames
for i in range(len(textFramesPPTX)):
# Loop through paragraphs in current ITextFrame
for para in textFramesPPTX[i].paragraphs:
# Loop through portions in the current IParagraph
for port in para.portions:
# Display text in the current portion
print(port.text)
# Display font height of the text
print(port.portion_format.font_height)
# Display font name of the text
if port.portion_format.latin_font != None:
print(port.portion_format.latin_font.font_name)
PPTX से Python के ज़रिए टेक्स्ट कैसे निकालें
ये PPTX फ़ाइलों को पार्स करने के चरण हैं।
प्रस्तुति के उदाहरण के साथ PPTX लोड करें
PPTX में सभी स्लाइड्स से टेक्स्टफ्रेम ऑब्जेक्ट्स की एक सरणी प्राप्त करें
TextFrames की सरणी के माध्यम से लूप करें
वर्तमान टेक्स्टफ्रेम में अनुच्छेदों के माध्यम से लूप करें
वर्तमान अनुच्छेद में भागों के माध्यम से लूप करें
वर्तमान भाग में पाठ प्राप्त करें