Lauritabrenes / Proyecto-1

Proyecto Diseño Logico
MIT License
1 stars 0 forks source link

Pasarlo al formato PDF, el resultado de la programación #15

Open Lauritabrenes opened 2 years ago

Lauritabrenes commented 2 years ago
from fpdf import FPDF #Se utiliza la siguiente libreria, para poder realizar el PDF

class PDF(FPDF): #crea la clase PDF, donde el archivo s.txt para transformarse en PDF
    def texts(self,name):
        with open(name,"rb") as xy:
            txt = xy.read().decode("latin-1")
        self.set_xy(10.0,20.0)
        self.set_text_color(00.0, 00.0, 00.0)
        self.set_font("Arial", "", 12)
        self.multi_cell(0,5,txt)

documento = open("s.txt","w") #Se abre el archivo txt, donde se guardan las soluciones

documento.close() #Se cierra el archivo 
pdf = PDF()
pdf.add_page()
pdf.texts("s.txt") #Se tanscribe el archivo s.txt a un PDF
pdf.output("solucion.pdf", "f") #Crea el archivo PDF final
AustinMV commented 2 years ago

Tratar de preguntar sobre el archivo pdf de latex (overleaf)