PPT PPTX ODP POT ppsx
Aspose.Slides  for Python via .NET
ODP

استخراج النص والصور من عرض ODP باستخدام Python

أنشئ تطبيقات Python الخاصة بك لاستخراج ملفات النصوص والصور والفيديو والصوت من PowerPoint باستخدام واجهات برمجة التطبيقات من جانب الخادم.

استخراج نص من ODP العرض التقديمي عبر Python

لمسح النص من العرض التقديمي بأكمله ، استخدم الأسلوب الثابت GetAllTextFrames الذي تعرضه فئة SlideUtil. يقوم الكود أدناه بمسح النص ومعلومات التنسيق من العرض التقديمي ، بما في ذلك الشرائح الرئيسية.

استخراج نص من ODP عرض تقديمي باستخدام Python


import aspose.slides as slides

#Instatiate Presentation class that represents a ODP file
with slides.Presentation("pres.odp") as pptxPresentation:
    # Get an Array of ITextFrame objects from all slides in the ODP
    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)

كيفية استخراج نص من ODP عبر Python

هذه هي خطوات تحليل ملفات ODP.

  1. تحميل ODP بمثيل عرض تقديمي

  2. الحصول على صفيف من كائنات TextFrame من كل الشرائح في ODP

  3. حلقة خلال صفيف إطارات النص

  4. تكرار الفقرات في TextFrame الحالي

  5. تكرار خلال الأجزاء في الفقرة الحالية

  6. احصل على نص في الجزء الحالي

تنسيقات التحليل المدعومة الأخرى

باستخدام Python ، يمكنك أيضًا فحص التنسيقات التالية: