كيفية شطب النص في PPTX باستخدام Python

يركز هذا الموضوع على ** كيفية شطب النص في PPTX باستخدام Python **. يتضمن تفاصيل إنشاء البيئة جنبًا إلى جنب مع الموارد المطلوبة ، وإجراء تدريجي ، وكود مثال عملي ** لحذف نص PPTX باستخدام Python **. يعرض تفاصيل العملية بما في ذلك إنشاء عرض تقديمي للعينة وإدخال شكل تلقائي وإضافة إطار النص عن طريق إدخال النص وشطب النص.

خطوات شطب النص في PPTX باستخدام Python

  1. قم بتهيئة البيئة لـ استخدم Aspose.Slides لـ Python عبر .NET لشطب النص في PPTX
  2. أنشئ عرضًا تقديميًا فارغًا افتراضيًا باستخدام مثيل للفئة Presentation وقم بالوصول إلى شريحتها الأولى
  3. قم بإنشاء شكل تلقائي وأدخل نموذج إطار نص بداخله
  4. أدخل جزءًا من النص داخل إطار النص واضبط خط السطر المزدوج على نص الجزء باستخدام العداد TextStrikethroughType
  5. أدخل جزءًا ثانيًا من النص داخل إطار النص واضبط خط السطر الفردي لنص الجزء باستخدام عداد TextStrikethroughType
  6. احفظ العرض التقديمي PPTX بخط يتوسطه النص الموجود على القرص

توضح الخطوات المذكورة أعلاه * كيفية حذف النص في العرض التقديمي باستخدام Python * من خلال عرض التفاصيل حول جميع الفئات والأساليب والخصائص المطلوبة للحصول على الإخراج المطلوب. يتم استخدام فئة العرض التقديمي لإنشاء ملف PPTX فارغ أو تحميله ، ويتم استخدام فئة ShapeCollection لإضافة شكل تلقائي في شريحة PPTX ، ويتم استخدام عداد TextStrikethroughType لتعيين نوع النص الذي يتوسطه خط للجزء المحدد.

كود لشطب النص في PPTX باستخدام Python

import aspose.pydrawing as draw
import aspose.slides as slides
# Path to the license file directory
filepath = "Y://Documents//KnowledgeBase//TestData//"
#Load the license in your application for creating a strikethrough text
slidesTextLicense = slides.License()
slidesTextLicense.set_license(filepath + "Conholdate.Total.Product.Family.lic")
# Instantiate the Presentation object to strikethrough text
with slides.Presentation() as presentationText:
#Access the first default slide
slide = presentationText.slides[0]
#Add an autoshape of the Rectangle type
autoShape = slide.shapes.add_auto_ahape(slides.ShapeType.Rectangle, 50, 150, 300, 0)
#Filling the shape with no fill color
autoShape.fill_format.fill_type = slides.FillType.NoFill
#Add the text frame inside the autoshape
textFrame = autoShape.add_text_frame("This is sample strikethrough text")
#Set the textual properties on the portion
portionFormat = textFrame.paragraphs[0].portions[0].portion_format
portionFormat.fill_format.fill_type = slides.FillType.Solid
portionFormat.fill_format.solid_fill_color.dolor = draw.Color.red
#Strikethrouh with double line
portionFormat.strikethrough_type = slides.TextStrikethroughType.Double;
#Add a second line of text
secondPortion = slides.Portion("Second text line ")
textFrame.Paragraphs[0].Portions.Add(secondPortion)
portionFormat = secondPortion.PortionFormat
portionFormat.fill_format.fill_type = slides.FillType.Solid
portionFormat.fill_format.solid_fill_color.color = draw.Color.blue
#Strikethrouh with a single line
portionFormat.strikethrough_type = slides.TextStrikethroughType.Single
#Save the presentation with strikethrough text on the disk
presentationText.save(filepath + "StrikethroughText.pptx", slides.export.SaveFormat.Pptx)
print("Done")

رمز المثال أعلاه * نص شطب في PPT باستخدام Python *. يستخدم مثيل فئة Presentation لإنشاء عرض تقديمي فارغ افتراضي واستخدام خاصية Presentation.Slides للوصول إلى الشريحة الأولى داخل مجموعة شرائح العرض التقديمي. يتم إدراج شكل تلقائي ، ثم يتبعه إدخال أجزاء من النص بداخله. أخيرًا ، بمساعدة العداد TextStrikethroughType ، يتم شطب النص المطلوب في العرض التقديمي وحفظه على القرص.

في هذا البرنامج التعليمي ، تعلمنا * حذف نص العرض التقديمي باستخدام Python *. إذا كنت مهتمًا بمعرفة المزيد حول دمج Islides داخل العرض التقديمي ، فراجع المقالة على كيفية دمج ملفات PowerPoint باستخدام Python.

 عربي