From d07397cc2fd3777fc26819dc3778351609a28700 Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Mon, 24 Mar 2014 23:34:06 +0100 Subject: [PATCH] [cropgraph] Pour pdfcrop plusieurs fois un diagramme (dammit libreoffice) --- cropgraph.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 cropgraph.sh diff --git a/cropgraph.sh b/cropgraph.sh new file mode 100755 index 0000000..35eaee2 --- /dev/null +++ b/cropgraph.sh @@ -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 -- 2.39.2