Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create pptx_file #987

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions pptx_file
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
from pptx import Presentation
from reportlab.lib.pagesizes import letter
from reportlab.pdfgen import canvas
from io import BytesIO

# Load the PowerPoint presentation
pptx_file = "Hoc_ngu_phap_tieng_Nhat_Minna_no_Nihongo.pptx"
prs = Presentation(pptx_file)

# Create PDF file
pdf_file = "Hoc_ngu_phap_tieng_Nhat_Minna_no_Nihongo.pdf"
pdf_buffer = BytesIO()
c = canvas.Canvas(pdf_buffer, pagesize=letter)

# Function to draw text with proper formatting
def draw_text(text, x, y, font_size=12, max_width=500):
c.setFont("Helvetica", font_size)
lines = text.split("\n")
y_position = y
for line in lines:
if c.stringWidth(line, "Helvetica", font_size) > max_width:
parts = []
part = ''
words = line.split()
for word in words:
if c.stringWidth(part + ' ' + word, "Helvetica", font_size) <= max_width:
part += ' ' + word
else:
parts.append(part)
part = word
if part:
parts.append(part)
for part in parts:
c.drawString(x, y_position, part.strip())
y_position -= 1.2 * font_size
else:
c.drawString(x, y_position, line.strip())
y_position -= 1.2 * font_size

# Iterate through slides and draw content to PDF
for slide in prs.slides:
for shape in slide.shapes:
if hasattr(shape, "text"):
if shape.has_text_frame:
text_frame = shape.text_frame
paragraphs = text_frame.paragraphs
for paragraph in paragraphs:
text = paragraph.text
draw_text(text, 50, 750) # Adjust position as needed

c.showPage()

c.save()

# Write PDF buffer to file
with open(pdf_file, "wb") as f:
f.write(pdf_buffer.getvalue())

print(f"File PDF đã được tạo thành công: {pdf_file}")