Changements récents - Rechercher:

Espace Wiki ∂'Alembert
Documentation générale


Espace Guide de survie du SysAdmin
Documentation technique


Espace Guide de survie du Développeur
Pour les développeurs


Espace Institut ∂’Alembert
L'institut


Le Site
À propos du Site
Liste complète des Pages


Aide PmWikiFr

Help PmWiki

GSSA /

PDF

Page mise à jour le 17/11/2021 15:55

Vous êtes dans un espace restreint en écriture.

Le format

Lecteurs

Trucs et Astuces

Concaténer des fichiers PDF

gs -q -sPAPERSIZE=a4 -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -sOutputFile=out.pdf file_1.pdf file_2.pdf

Réduction de la taille

Permet de transformer le fichier grand.pdf en petit.pdf:

gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -sOutputFile=petit.pdf grand.pdf

Autres options de -dPDFSETTINGS:

  /screen selects low-resolution output similar to the Acrobat Distiller "Screen Optimized" setting.
  /ebook selects medium-resolution output similar to the Acrobat Distiller "eBook" setting.
  /printer selects output similar to the Acrobat Distiller "Print Optimized" setting.
  /prepress selects output similar to Acrobat Distiller "Prepress Optimized" setting.
  /default selects output intended to be useful across a wide variety of uses, possibly at the expense of a larger output file.

Pour spécifier la taille, par vers A4:

gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -sPAPERSIZE=a4 -dFIXEDMEDIA -dPDFFitPage -dNOPAUSE -dQUIET -dBATCH -sOutputFile=a4.pdf a3.pdf

Inverser les couleurs

Permet d'avoir du texte blanc sur fond noir, car la lecture sur écran, dans le temsp, ça pique les yeux>

Marche plus ou mois suivant le fichier source.

convert erlang-book-part1.pdf -negate erlang-book-part1-INV.pdf
À propos du site Licence Creative Commons Cooked with love in 2014-2023 by pcht
Page mise à jour le 17/11/2021 15:55