Como puedo agregar Header- footer con itext en java

 
    public void generarPDF(){
        try{
            Document docut = new Document(PageSize.A5.rotate());
            PdfWriter writer = PdfWriter.getInstance(docut, new FileOutputStream("Recetas/"+ guardar3 +".pdf"));
                docut.setMargins(30, 30,90,35);
            docut.open();
            PdfContentByte cb = writer.getDirectContent();
  // contenido 
   docut.close();
}}

1 respuesta

Respuesta
1

I. Hola Gabriel, yo desconozco como agregarlo pero he visto un tutorial y dos consultas que podrían arrojar un poco de información.

En Español

http://java-white-box.blogspot.com.es/2014/07/itext-eventos-en-itext-como-poner-un.html 

https://hashblogeando.wordpress.com/2017/04/18/encabezados-pie-de-pagina-y-conteo-de-paginas-en-itext-7/ 

En Inglés (traducido).

https://translate.googleusercontent.com/translate_c?depth=1&hl=es&prev=search&rurl=translate.google.es&sl=en&sp=nmt4&u=https://stackoverflow.com/questions/19856583/how-to-add-header-and-footer-to-my-pdf-using-itext-in-java&usg=ALkJrhiOk6p_JxZ9xBbgKQjshOJm6pYrVg 

https://translate.google.es/translate?hl=es&sl=en&u=https://memorynotfound.com/adding-header-footer-pdf-using-itext-java/&prev=search 

https://www.youtube.com/watch?v=__7JDSqBj68 

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas