Scripts posted recently tagged to pdf in Kelpi

1- 6 of 6.

Sustituir la portada de un pdf por otra

to pdf pdftk by nando.quintana

pdftk A=portada.pdf B=informe.pdf cat A B2-end output combined.pdf

Concatenar PDFs con pdftk

to bash pdftk pdf by nando.quintana

#!/bin/bash
pdftk uno.pdf dos.pdf tres.pdf cuatro.pdf cinco.pdf cat output definitivo.pdf

Convert the first page of a bunch of PDF files to JPG images

to pdf ppm image jpeg jpg transform by mikel

#!/usr/bin/python
__doc__ = """
Previous requisites:
  * sudo apt-get install netpbm poppler-utils
"""

Converting Word RTF to PDF

to bash rtf pdf word by angUs

#!/bin/sh

########################################################################
#
#  http://jimmyg.org/2007/09/24/converting-word-rtf-to-pdf-on-debian/

Convert a bunch of RST files to PDF

to rst2pdf restructuredtext rst pdf convert python by mikel

#!/usr/bin/python
rst2latex = 'rst2latex.py -l es  \
--output-encoding=iso-8859-15 %(filename)s.txt %(filename)s.tex'
pdflatex = 'pdflatex %(filename)s.tex'
def main():

sign PDF files with digital signatures

to python jython java pdf digitalsignature p12 signature by mikel

Variables to set, before executing the code
PATH_TO_P12_CERTIFICATE_FILE
CERTIFICATE_PASSWORD
CERTIFICATE_PASSWORD
INPUT_FILE_PATH_TO_SIGN
hits counter