Untitled

 avatar
unknown
plain_text
5 months ago
1.1 kB
2
Indexable
from reportlab.pdfgen import canvas

# Path for the updated CV
output_path = "/mnt/data/Updated_CV_English.pdf"

# Create a new PDF with the updated introduction
c = canvas.Canvas(output_path)
width, height = 595.27, 841.89  # Default A4 size in points

# Add the updated introduction to the new PDF
updated_intro = """
Chemical engineering graduate with hands-on experience in process optimization, continuous improvement, and technical problem-solving. My internships at IMERYS and Elkem Silicones provided opportunities to refine production workflows, analyze process data, and optimize resource utilization, resulting in measurable efficiency gains. Passionate about innovation in manufacturing, I am eager to bring my technical expertise and collaborative mindset to a dynamic team, driving process improvements and ensuring operational excellence.
"""

# Write the introduction on the first page
c.drawString(50, height - 50, "Updated CV")
c.drawString(50, height - 100, updated_intro)

# Save the PDF
c.save()

output_path
Editor is loading...
Leave a Comment