Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
1.9 kB
1
Indexable
Never
from PIL import Image, ImageDraw, ImageFont

# Create an image with a white background
width, height = 800, 1000
image = Image.new('RGB', (width, height), color='white')
draw = ImageDraw.Draw(image)

# Load a default font (uses the default Pillow font if no specific font is found)
title_font = ImageFont.load_default()
text_font = ImageFont.load_default()

# Draw header/title
header = "Servicios Profesionales de Traducción"
draw.text((50, 50), header, font=title_font, fill='black')

# Draw introduction
intro = "Cetina Services ofrece traducción experta del español al inglés para todos sus documentos."
draw.text((50, 120), intro, font=text_font, fill='black')

# Draw services offered
services_title = "Servicios Ofrecidos:"
services_list = [
    "- Traducción de documentos legales",
    "- Traducción de papeles comerciales",
    "- Traducción de documentos personales"
]
draw.text((50, 200), services_title, font=title_font, fill='black')
for i, service in enumerate(services_list):
    draw.text((50, 250 + i * 40), service, font=text_font, fill='black')

# Draw contact information
contact = "Llámenos hoy al 757-383-0724"
draw.text((50, 400), contact, font=text_font, fill='black')

# Draw call to action
cta = "¡Obtenga la traducción de sus documentos de manera rápida y precisa!"
draw.text((50, 460), cta, font=text_font, fill='black')

# Optionally, draw address, hours of operation, and website/social media (if applicable)
# Example placeholders
address = "Dirección: [Dirección de Oficina]"
hours = "Horarios: Lunes a Viernes, 9 AM a 5 PM"
website = "Sitio Web: www.cetinaservices.com"
draw.text((50, 520), address, font=text_font, fill='black')
draw.text((50, 560), hours, font=text_font, fill='black')
draw.text((50, 600), website, font=text_font, fill='black')

# Save the image
image.save('cetina_services_flyer.png')

# Show the image
image.show()
Leave a Comment