]> gitweb.pimeys.fr Git - scripts-20-100.git/commitdiff
[cropgraph] Pour pdfcrop plusieurs fois un diagramme (dammit libreoffice)
authorVincent Le Gallic <legallic@crans.org>
Mon, 24 Mar 2014 22:34:06 +0000 (23:34 +0100)
committerVincent Le Gallic <legallic@crans.org>
Mon, 24 Mar 2014 22:34:06 +0000 (23:34 +0100)
cropgraph.sh [new file with mode: 0755]

diff --git a/cropgraph.sh b/cropgraph.sh
new file mode 100755 (executable)
index 0000000..35eaee2
--- /dev/null
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+# Pour croper 3 fois de suite un graphe pdf exporté par libreoffice
+# Attention, pas d'espaces, pas de .pdf qui traîne au milieu…
+
+f=$1
+fname=${1/.pdf/}
+
+pdfcrop $1
+pdfcrop --margins "0 -10 0 -10" ${fname}-crop.pdf
+pdfcrop ${fname}-crop-crop.pdf
+mv ${fname}-crop-crop-crop.pdf ${fname}.pdf
+rm -f ${fname}-crop.pdf
+rm -f ${fname}-crop-crop.pdf