Untitled

 avatar
unknown
plain_text
a year ago
2.5 kB
11
Indexable
from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer, Image
from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle
from reportlab.lib.pagesizes import A4
from reportlab.lib.units import cm

# إعداد المستند
pdf_file = "/mnt/data/قصة_تركيب_الخلية_مصور.pdf"
doc = SimpleDocTemplate(pdf_file, pagesize=A4)
styles = getSampleStyleSheet()
story = []

# تنسيقات
title_style = ParagraphStyle('title', parent=styles['Heading1'], alignment=1, fontSize=20, spaceAfter=20)
subtitle_style = ParagraphStyle('subtitle', parent=styles['Heading2'], alignment=1, fontSize=14, spaceAfter=10)
text_style = ParagraphStyle('text', parent=styles['Normal'], fontSize=12, leading=18, spaceAfter=10)

# العنوان
story.append(Paragraph("قصة تركيب الخلية", title_style))
story.append(Paragraph("قصة مصورة للأطفال", subtitle_style))
story.append(Spacer(1, 12))

# محتوى القصة مع صور توضيحية (رمزية)
story.append(Paragraph("🔬 في قديم الزمان، كانت هناك جزيئات صغيرة جدًا تتجول في الماء، مثل اللبنات السحرية!", text_style))
story.append(Image("/mnt/data/atom.png", width=5*cm, height=5*cm))  
story.append(Paragraph("⚛️ اجتمعت الذرات لتكوّن جزيئات: الماء، السكريات، الدهون، البروتينات، والأحماض النووية.", text_style))
story.append(Image("/mnt/data/molecule.png", width=6*cm, height=4*cm))

story.append(Paragraph("🏰 ومع مرور الوقت، تعاونت هذه الجزيئات لتبني بيتًا صغيرًا اسمه (الخلية).", text_style))
story.append(Image("/mnt/data/cell.png", width=7*cm, height=5*cm))

story.append(Paragraph("🧬 بداخل هذا البيت توجد غرف كثيرة: النواة لحفظ التعليمات، الميتوكوندريا لتوليد الطاقة، الشبكة الإندوبلازمية لصناعة البروتينات.", text_style))
story.append(Image("/mnt/data/nucleus.png", width=6*cm, height=5*cm))

story.append(Paragraph("✨ ومع التعاون بين هذه الأجزاء، وُلدت الحياة، وبدأت الأحياء تكبر وتتعقد حتى ظهر الإنسان.", text_style))
story.append(Image("/mnt/data/life.png", width=7*cm, height=5*cm))

# حفظ الملف
doc.build(story)
pdf_file
Editor is loading...
Leave a Comment