anisclo2007 Posted February 18, 2015 Share Posted February 18, 2015 Buenas tardes, Estoy modificando las facturas PDF para un cliente que me pide que utilice sus tipografías pero cuando edito el header.tpl o el invoice.tpl sólo están las tablas y no veo posibilidad de incluir la importación de fuentes. Alguien sabe dónde puede hacer un font-import? Gracias Link to comment Share on other sites More sharing options...
tuk66 Posted February 18, 2015 Share Posted February 18, 2015 Set const DEFAULT_FONT = 'your_font'; en /classes/pdf/PDFGenerator.php Link to comment Share on other sites More sharing options...
anisclo2007 Posted February 18, 2015 Author Share Posted February 18, 2015 Set const DEFAULT_FONT = 'your_font'; en /classes/pdf/PDFGenerator.php Gracias tuk66! Debe de haber un lugar donde dar de alta la fuente porque me devuelve: "TCPDF ERROR: Could not include font definition file: raleway" Link to comment Share on other sites More sharing options...
tuk66 Posted February 18, 2015 Share Posted February 18, 2015 I forgot. You must also add the font to TCPDF. Olvidé. También debe agregar la fuente a TCPDF. http://queirozf.com/entries/adding-a-custom-font-to-tcpdf Link to comment Share on other sites More sharing options...
anisclo2007 Posted February 19, 2015 Author Share Posted February 19, 2015 I forgot. You must also add the font to TCPDF. Olvidé. También debe agregar la fuente a TCPDF. http://queirozf.com/entries/adding-a-custom-font-to-tcpdf Gracias. Con estas dos lineas es suficiente? $fontname = $pdf->addTTFfont('/fonts/raleway.ttf', 'TrueTypeUnicode', '', 32); $pdf->SetFont('raleway', '', 14, '', 'false'); Donde lo escribo? En el tools/tcpdf/PDF.php ?? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now