Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 23/01/2012, à 23:40

Flo_

[Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

Bonjour,

Tout est dans le titre, j'aimerais pouvoir imprimer des pdf en plus grand mais sur le même format papier. Pour l'instant la seule solution que j'ai trouvée c'est :
- convertir le fichiers en images
- agrandir les images avec gimp
- les découper avec posterazor
Or c'est assez long et fastidieux. Je cherche donc un moyen plus simple d'arriver à ce résultat.

Merci d'avance
Flo

Dernière modification par Flo_ (Le 01/02/2012, à 07:43)

Hors ligne

#2 Le 24/01/2012, à 00:28

sputnick

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

des pistes :

pdfnup (voir options --nup et --scale notamment)
pdftk
stapler
qpdf


(outils en CLI de manipulation de PDFs)


On ne peut pas mettre d'array dans un string!
https://sputnick.fr/

Hors ligne

#3 Le 24/01/2012, à 00:48

misaine

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

avec inkscape c'est simple et rapide , tu importes le pdf et tu l'imprimes en 2 A4 ou même 4 A4

1327358558.png-1327358793.png


la roue tourne...c'est sûr! c'est même pour ça qu'on l'a inventée.

Hors ligne

#4 Le 24/01/2012, à 01:52

gigiair

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

convert de Imagemagick avec l'option -crop et un -scale 200% devrait le faire.
tu commence par extraire les pages avec pdftoppm

pdftoppm monfich.pdf monim

va créer les images monim-01.ppm, monim-02.ppm etc...
puis,pour la première page par exemple;

convert monim-01.ppm -crop 1x2@ -scale 200% +repage +adjoin monim-01-1x2@_%d.pdf

pour faire toute la série, une boucle for ...;do ....;done devrait bien aller.
par exemple

for f in monim*.ppm;do convert $f -crop 1x2@ -scale 200% +repage +adjoin $(basename $f .ppm)-1x2@_%d.pdf;done

Voir Exemples Imagemagick

edit:
Ça ne marche pas quand le pdf contient des images qui coupent la ligne médiane, ce qui doit être le cas de ton document...
Par contre, ça marche très bien si l'on prend l'extension jpg au lieu de pdf.

for f in monim*.ppm;do convert $f -crop 1x2@ -scale 200% +repage +adjoin $(basename $f .ppm)-1x2@_%d.jpg;done

Dernière modification par gigiair (Le 24/01/2012, à 23:28)


--
JJR.

Hors ligne

#5 Le 25/01/2012, à 21:31

Flo_

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

@gigiair
Merci beaucoup ! ça fonctionne plutôt bien.
J'aimerais bien pour utiliser cette méthode avec un script et qu'un fichier pdf soit recréé à la fin.
Un autre petit souci auquel je n'avais pas pensé, c'est que la ligne du milieu peut être coupée, il faudrait qu'il agrandisse légèrement moins pour être sur d'avoir tout le contenu.

@misaine : Je n'ai pas réussi avec Inkscape.

Merci d'avance
Flo

Hors ligne

#6 Le 27/01/2012, à 12:20

gigiair

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

Ça me paraît une bonne idée de créer un fichier de commandes si l'on a souvent à exécuter une telle commande, mais un petit fichier texte servant d'aide-mémoire peut aussi bien faire. J'en ai un pour tout un tas de commandes en ligne bien pratiques d'usage un peu occasionnel que j'oublierais autrement.

Ce n'est pas un souci d'en faire un script. Le mieux dans ce cas, est de le placer dans le répertoire
/home/${USER}/bin
Au besoin, il faut créer ce répertoire

md ~/bin

et d'ajouter ce chemin au ${PATH}, il suffit d'ajouter la ligne

PATH=~/bin:"${PATH}"

dans le fichier ~/.bash_profile.
Ensuite, créer le fichier de commande que l'on rend exécutable et que l'on place dans ~/bin. Après il suffit de l'appeler par son nom.

Le paramètre de -crop permet de rogner un peu des marges, ça peut être intéressant, mais il faudrait faire des essais. Ça place des marques de coupe aux coins de l'image
J'ai essayé la commande

for f in monfich-*.ppm;do convert $f -crop 1x2+10+10@ -scale 200%  +repage +adjoin  $(basename $f .ppm)-1x2@_%d.pdf;done

Qui semble bien faire sur un document pdf converti en ppm.
Sans le +10+10 du crop, les fichiers pdf produits déclenchaient une erreur d'affichage, du moins ceux de la partie basse.

IM est un ensemble d'utilitaires extrêmement puissant, mais cette puissance a un coût en terme d'apprentissage.

Dernière modification par gigiair (Le 27/01/2012, à 12:23)


--
JJR.

Hors ligne

#7 Le 27/01/2012, à 20:20

Flo_

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

Tout d'abord merci !
Je suis arrivé à cette ligne :

pdftoppm monfichier.pdf temp && for f in temp-*.ppm;do convert $f -crop 1x2+20+20@ -scale 200%  +repage +adjoin  $(basename $f .ppm)-1x2@_%d.pdf;done && convert temp-*@*.pdf monfichier-agrandi.pdf && rm -r temp*

ça fait une seule commande à lancer et c'est plutôt efficace.
j'ai légèrement augmenté les marges pour être sur de ne pas avoir de problème.
J'ai testé sur un document de 4 pages ça fonctionne très bien et sur un de 100 pages mais il n'a pas réussi là :

...
convert: Échec délégation Postscript `temp-035-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-0YznG05R--0000001" "-f/tmp/magick-gJsOzuXg" "-f/tmp/magick-AE2m2YOF" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-036-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-4CJN80hG--0000001" "-f/tmp/magick-xkF5glL4" "-f/tmp/magick-r1XTXFet" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-036-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-t3CBskIw--0000001" "-f/tmp/magick-jjTvdAgU" "-f/tmp/magick-XOQQxQOh" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-037-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-8UMXVHVp--0000001" "-f/tmp/magick-3Rb2ZWxM" "-f/tmp/magick-FS8QDca9" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-037-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-ervZMXtk--0000001" "-f/tmp/magick-mzVrfFUG" "-f/tmp/magick-aZKXhnl3" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-038-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-n-EhTURf--0000001" "-f/tmp/magick-tToe1eYB" "-f/tmp/magick-kVDbJz4X" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-038-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-f4VrEpac--0000001" "-f/tmp/magick-K9A6PzYx" "-f/tmp/magick-qPv3CKMT" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-039-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-GI99O158--0000001" "-f/tmp/magick--dIT92Ju" "-f/tmp/magick-GWCL74nQ" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-039-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Dr8filq6--0000001" "-f/tmp/magick-F10t9tWr" "-f/tmp/magick-zU8UHDsN" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-040-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-E5dahEj5--0000001" "-f/tmp/magick-84gnEi7p" "-f/tmp/magick-h4MNDXUK" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-040-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-P7HyvmM6--0000001" "-f/tmp/magick-EjZecBLq" "-f/tmp/magick-NVXjtQKK" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-041-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-lwjT1na9--0000001" "-f/tmp/magick-EzfnzQZs" "-f/tmp/magick-lgjCCjPM" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-041-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Z9UcXZVd--0000001" "-f/tmp/magick-3AUMRcEw" "-f/tmp/magick-_ZlqpqmP" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-042-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Z9hMuJzm--0000001" "-f/tmp/magick-7-1XLHUD" "-f/tmp/magick-GJBrEGfV" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-042-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-moKhlVvx--0000001" "-f/tmp/magick-AVbunpnO" "-f/tmp/magick-hO4xYTe5" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-043-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-iX44pTFJ--0000001" "-f/tmp/magick-eyBsOPb0" "-f/tmp/magick-EIqmVMHg" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-043-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-WD29mINY--0000001" "-f/tmp/magick-scFuZU0d" "-f/tmp/magick-tNivc8dt" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-044-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-mCIWbPXg--0000001" "-f/tmp/magick-DBRC9Ihv" "-f/tmp/magick-8W3CODBJ" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-044-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-8dPV2imA--0000001" "-f/tmp/magick-DpCm9QvO" "-f/tmp/magick-x77mWpF2" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-045-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-8P7KmfrU--0000001" "-f/tmp/magick-L0qyVJk8" "-f/tmp/magick-TUig8eem" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-045-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-vPbbJl1e--0000001" "-f/tmp/magick-mOpFZBMs" "-f/tmp/magick-MzxRQSxG" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-046-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-vtrkd8iA--0000001" "-f/tmp/magick-GWpTkZNN" "-f/tmp/magick-sOjr4Qi1" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-046-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-8nrTxK4V--0000001" "-f/tmp/magick-6v2Ypzr9" "-f/tmp/magick-fO8sQoOm" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-047-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-W2iGK2ui--0000001" "-f/tmp/magick-ib7SouCv" "-f/tmp/magick-VT7BIWJI" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-047-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-gT8FRkUF--0000001" "-f/tmp/magick-6kQFdEFS" "-f/tmp/magick-0gM2iYq5" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-048-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-QqzyhLY3--0000001" "-f/tmp/magick-UbFKDzzg" "-f/tmp/magick-VS39woat" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-048-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-onxG94rs--0000001" "-f/tmp/magick-nTBcBwVE" "-f/tmp/magick-u13zBYoR" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-049-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-wh2ws9sS--0000001" "-f/tmp/magick-oTixaje4" "-f/tmp/magick-O8nmrtZf" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-049-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-jEKcEcjk--0000001" "-f/tmp/magick-S7Qw1Evv" "-f/tmp/magick-rbiEZ7HG" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-050-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-iVIfaDdN--0000001" "-f/tmp/magick-wnkQngaY" "-f/tmp/magick-AEEhdU68" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-050-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-iloK7EHg--0000001" "-f/tmp/magick-IPzXwevr" "-f/tmp/magick-pHRayOiC" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-051-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-85UEacgL--0000001" "-f/tmp/magick-TReTXcAV" "-f/tmp/magick-C60TneU5" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-051-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-KXyimNjh--0000001" "-f/tmp/magick-afM0e78q" "-f/tmp/magick-CRHvErYA" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-052-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-PvJMBibO--0000001" "-f/tmp/magick-YAcCTHQX" "-f/tmp/magick-_5QGM7v7" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-052-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Kg5n2LDl--0000001" "-f/tmp/magick-ijW76B5u" "-f/tmp/magick-45vzOsxE" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-053-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Hb8Gt6wT--0000001" "-f/tmp/magick-wYfhd9R2" "-f/tmp/magick-6DPGxcdc" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-053-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-9Fb35zPr--0000001" "-f/tmp/magick-xGBSPu1A" "-f/tmp/magick-cxs57pdK" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-054-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-ogz4aCV0--0000001" "-f/tmp/magick-6bcaUHM9" "-f/tmp/magick-6rmWhODi" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-054-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-3ewl4c3A--0000001" "-f/tmp/magick-7Dla9VyJ" "-f/tmp/magick-YtCWVF4R" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-055-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-igZSG9Xb--0000001" "-f/tmp/magick-sCzMayhk" "-f/tmp/magick-O5eMeXAs" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-055-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-E2DB0aFN--0000001" "-f/tmp/magick-Rr5n61EV" "-f/tmp/magick-1VGOTTE3" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-056-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-fZyYcQDq--0000001" "-f/tmp/magick-RYUCIU9x" "-f/tmp/magick-zZGKPZFF" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-056-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-VNFgSjY4--0000001" "-f/tmp/magick-hCXLr72b" "-f/tmp/magick-ajHHDV7i" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-057-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-iHUq0E2J--0000001" "-f/tmp/magick-8oEyo2YQ" "-f/tmp/magick-9KsdlqVX" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-057-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-PP3Qvwzp--0000001" "-f/tmp/magick-0yfwSqlw" "-f/tmp/magick-RezDVl7C" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-058-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-J7h5JQD5--0000001" "-f/tmp/magick-VFa6ACec" "-f/tmp/magick-YA042oPi" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-058-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-jIVi1WcM--0000001" "-f/tmp/magick-OBK1K4CS" "-f/tmp/magick-lL5e4c3Y" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-059-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-aD9ac7ct--0000001" "-f/tmp/magick-eqhud2uz" "-f/tmp/magick-6_4gOXMF" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-059-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-6e506O8a--0000001" "-f/tmp/magick-Piy6r41g" "-f/tmp/magick-M20vqkVm" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-060-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-TnZeYnLT--0000001" "-f/tmp/magick-QSLlPwwZ" "-f/tmp/magick-u8B0dGh5" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-060-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-8BprbBLC--0000001" "-f/tmp/magick-pOGqSioI" "-f/tmp/magick-bAwua10N" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-061-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-kYdpEGcn--0000001" "-f/tmp/magick-1CtRTecs" "-f/tmp/magick-MfYRNNbx" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-061-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-YnAQX6f9--0000001" "-f/tmp/magick-YNLPxGJd" "-f/tmp/magick-ItB3Hgdi" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-062-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-E8VImhnW--0000001" "-f/tmp/magick-R3YqHmD0" "-f/tmp/magick-1atUFsT4" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-062-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-X3ntzbDM--0000001" "-f/tmp/magick-h6AOYmoP" "-f/tmp/magick-o0gfXy9R" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-063-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-sTNzodEG--0000001" "-f/tmp/magick-Nb4E8fgI" "-f/tmp/magick-uiwEvjSJ" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-063-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-NzuieHJD--0000001" "-f/tmp/magick-voScxkoE" "-f/tmp/magick-W7dKrY2E" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-064-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-iW6ScHfD--0000001" "-f/tmp/magick-5G8FXubD" "-f/tmp/magick-FHvWlj7C" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-064-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Y3krjnSD--0000001" "-f/tmp/magick-VdhHBECD" "-f/tmp/magick-3V7uuWmD" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-065-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Xk9LR7iF--0000001" "-f/tmp/magick-AXsH4bJE" "-f/tmp/magick-HY66Rg9D" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-065-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-KoRlUpNH--0000001" "-f/tmp/magick-uzJwUbRG" "-f/tmp/magick-9vUozYUF" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-066-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-K_gqzrUK--0000001" "-f/tmp/magick-5aRhU6OJ" "-f/tmp/magick-WaCZXMJI" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-066-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-BfQh74wP--0000001" "-f/tmp/magick-VoBA9LMN" "-f/tmp/magick-1NgvPt2L" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-067-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-016ggqdV--0000001" "-f/tmp/magick-af67qogT" "-f/tmp/magick-h28PfnjR" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-067-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-6DUf1c41--0000001" "-f/tmp/magick-NuhYCoCZ" "-f/tmp/magick-zcJjQAaX" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-068-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-SMdJDiY9--0000001" "-f/tmp/magick-7lpvaUf7" "-f/tmp/magick-fsaUkwx4" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-068-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-PWC3PUwj--0000001" "-f/tmp/magick-3xbYsC7f" "-f/tmp/magick-4M8fGkIc" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-069-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-AVme6Ouu--0000001" "-f/tmp/magick-JWfArWIq" "-f/tmp/magick-7HhHq4Wm" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-069-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-DkOpNb7F--0000001" "-f/tmp/magick-HzDwQHcC" "-f/tmp/magick-cw04veiy" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-070-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-BiJpCkbT--0000001" "-f/tmp/magick-v5AyBxBO" "-f/tmp/magick-8kX77K1J" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-070-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-AjAYTI88--0000001" "-f/tmp/magick-MdZXTfK3" "-f/tmp/magick-ItruvNlY" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-071-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-g7DOqppr--0000001" "-f/tmp/magick-XAx74ufl" "-f/tmp/magick-vjqkjB5e" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-071-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-gs78W7ZK--0000001" "-f/tmp/magick-wIR5EdiE" "-f/tmp/magick-oElK0jAx" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-072-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-4lMHLIL6--0000001" "-f/tmp/magick-TUcpWKkZ" "-f/tmp/magick-HtHfGNTR" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-072-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Pb63DKhy--0000001" "-f/tmp/magick-nPG9TYfo" "-f/tmp/magick-6ONZLdee" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-073-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-lh2UcII2--0000001" "-f/tmp/magick-NzyfHUwS" "-f/tmp/magick-zgNVP7kI" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-073-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-JSogBgKy--0000001" "-f/tmp/magick-g8dGFiQn" "-f/tmp/magick-2ieSrlWc" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-074-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-N4GIKrS6--0000001" "-f/tmp/magick-duWswngV" "-f/tmp/magick-rCL8VjEJ" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-074-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-TpUF5GSG--0000001" "-f/tmp/magick-PXnIedHu" "-f/tmp/magick-5gSt1Jvi" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-075-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-hZqjQBSi--0000001" "-f/tmp/magick-qNI2nsY5" "-f/tmp/magick-3TO1zj4S" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-075-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Fr4TZDWW--0000001" "-f/tmp/magick-7vuPVjnJ" "-f/tmp/magick-MyBxy0Nv" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-076-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-zA804SKC--0000001" "-f/tmp/magick-n8rYiuDo" "-f/tmp/magick-BdXC65va" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-076-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-ypujrcsk--0000001" "-f/tmp/magick-fCmSJvF5" "-f/tmp/magick-KjthEPSQ" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-077-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-CQClihh3--0000001" "-f/tmp/magick-WEKz9BgO" "-f/tmp/magick-xxnSwXfz" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-077-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-_5fYsyWM--0000001" "-f/tmp/magick-JchWpIDx" "-f/tmp/magick-0W5V0Ski" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-078-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-pmghOkfx--0000001" "-f/tmp/magick-rNiEnTKh" "-f/tmp/magick-0G5Dwsg2" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-078-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-2h8cTLAi--0000001" "-f/tmp/magick-yyMMb7F2" "-f/tmp/magick-UT6f3sLM" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-079-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-qkP9Bz34--0000001" "-f/tmp/magick-7lkHtzMO" "-f/tmp/magick-uemg4zvy" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-079-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-JXc8XwiS--0000001" "-f/tmp/magick-7VX9kbQB" "-f/tmp/magick-j65isQnl" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-080-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-s9mCcdXF--0000001" "-f/tmp/magick-OQNvI6lp" "-f/tmp/magick-7ckRN0K8" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-080-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-nuABKpgu--0000001" "-f/tmp/magick-EoEcLqpd" "-f/tmp/magick-tiSSrsyW" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-081-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-uZq2Qs2j--0000001" "-f/tmp/magick-3qHGQ0z2" "-f/tmp/magick-Dw28rz7K" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-081-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-wf97BVLa--0000001" "-f/tmp/magick-Yiyk6t8S" "-f/tmp/magick-3KYnc3uB" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-082-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-8LQnEj62--0000001" "-f/tmp/magick-4KVyFALK" "-f/tmp/magick-fsLwlSqs" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-082-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-V_4EMiwW--0000001" "-f/tmp/magick-NSPQ6KZD" "-f/tmp/magick-Q0EnYdtl" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-083-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-uMSjdf8Q--0000001" "-f/tmp/magick-j9Gm0S5x" "-f/tmp/magick-y-21qx3e" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-083-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-HE3efdUN--0000001" "-f/tmp/magick-QVT8qt2t" "-f/tmp/magick-dwKneKaa" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-084-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-KXinPtaP--0000001" "-f/tmp/magick-Us2oA9tt" "-f/tmp/magick-_bV3RPN7" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-084-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-GCFdAmuV--0000001" "-f/tmp/magick-lQEvdJey" "-f/tmp/magick-zODgv6Ya" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-085-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-_4tSbI63--0000001" "-f/tmp/magick-8twFrHwG" "-f/tmp/magick-VVZNvHWi" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-085-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-H6YNQ25c--0000001" "-f/tmp/magick-xQzJygpP" "-f/tmp/magick-AodiMuIr" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-086-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-ppAPt4Qm--0000001" "-f/tmp/magick-TPNfLvPY" "-f/tmp/magick-r4bvDXNA" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-086-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-3MgtrNFx--0000001" "-f/tmp/magick-M3dEVNh9" "-f/tmp/magick-B2Da3OTK" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-087-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-MUu37teJ--0000001" "-f/tmp/magick-nN3ob4Ek" "-f/tmp/magick-Nq2lRE5V" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-087-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-kw7wJDeV--0000001" "-f/tmp/magick-Bwrnqdxw" "-f/tmp/magick-SJXLSNP7" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-088-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-TbeBnMZ7--0000001" "-f/tmp/magick-e30H9YXI" "-f/tmp/magick-A-JWycWj" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-088-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-_dgip4vl--0000001" "-f/tmp/magick-UQSV6SgW" "-f/tmp/magick-dzLunI1w" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-089-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-VEDadcCz--0000001" "-f/tmp/magick-WmIYUMba" "-f/tmp/magick-pze7LoLK" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-089-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-xr4VLo9N--0000001" "-f/tmp/magick-BGJ2zOBo" "-f/tmp/magick-wio28e4Y" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-090-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-ceyriaH3--0000001" "-f/tmp/magick-vnPx66GD" "-f/tmp/magick-hhZrx4Gd" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-090-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-_JkCB3Wj--0000001" "-f/tmp/magick-IOIxrTPT" "-f/tmp/magick-_1rtXJIt" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-091-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-DlUGvhdB--0000001" "-f/tmp/magick-G7dRtODa" "-f/tmp/magick-VbIVbm4J" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-091-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-oT2a7vqT--0000001" "-f/tmp/magick-_4hGxvCs" "-f/tmp/magick-GXx8BvO1" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-092-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-WWBweJxc--0000001" "-f/tmp/magick-7T6Z9boL" "-f/tmp/magick-Sd0GNFek" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-092-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-uBY6Cvnw--0000001" "-f/tmp/magick-GjXct734" "-f/tmp/magick-i8tYSJKD" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-093-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-x5khD0SQ--0000001" "-f/tmp/magick-h_3oM5ip" "-f/tmp/magick-ADToybJX" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-093-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-z-iL9rAc--0000001" "-f/tmp/magick-5N2uXKwK" "-f/tmp/magick-9w9Hj4si" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-094-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-j5kGKp6y--0000001" "-f/tmp/magick-sZz9emS6" "-f/tmp/magick-K8ankjEE" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-094-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-IN8RMKgW--0000001" "-f/tmp/magick-9ZZ2iGNt" "-f/tmp/magick-0YaowCk1" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-095-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-CFaW3Y0j--0000001" "-f/tmp/magick-Z11xeEoR" "-f/tmp/magick-7o2D7jMo" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-095-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Bon20ubL--0000001" "-f/tmp/magick-ZKj4jWUg" "-f/tmp/magick-kJvokoEM" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-096-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-imZT0Kkg--0000001" "-f/tmp/magick-4BM3WsUK" "-f/tmp/magick-5zCotbuf" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-096-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-uP3jgKuO--0000001" "-f/tmp/magick-r85YBw8h" "-f/tmp/magick-cx6gwjML" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-097-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-xyPYBWIp--0000001" "-f/tmp/magick-6uZSjwiS" "-f/tmp/magick-HMOXF6Rk" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-097-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-JWRl3on2--0000001" "-f/tmp/magick-SKsmKnNu" "-f/tmp/magick-q03d0mdX" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-098-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-arghVaXF--0000001" "-f/tmp/magick-GEbbSmX7" "-f/tmp/magick-YsXTzzXz" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-098-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-bzyEB8sl--0000001" "-f/tmp/magick-JOZKRWIM" "-f/tmp/magick-GT7DRLYd" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-099-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-t4E1w791--0000001" "-f/tmp/magick-Y-k7G8dt" "-f/tmp/magick-YEI3qaiU" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-099-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-ZLlhpCCJ--0000001" "-f/tmp/magick-ZaBCiKma" "-f/tmp/magick-5VqwNS6A" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-100-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-BjZKvtAs--0000001" "-f/tmp/magick-9fCbsfKS" "-f/tmp/magick-Y0pAe2Ti" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-100-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-M9eqj6sf--0000001" "-f/tmp/magick-T-AF49WD" "-f/tmp/magick-OQ4Vrer2" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-101-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-ARseVE86--0000001" "-f/tmp/magick-xrkw7U3t" "-f/tmp/magick-uyJXTbZQ" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-101-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-I9qDFxC4--0000001" "-f/tmp/magick-bofVqQqp" "-f/tmp/magick-SiEFT9eK" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-102-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick--zrjxh37--0000001" "-f/tmp/magick-AjOoh0Vq" "-f/tmp/magick-6AoJKJOJ" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-102-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-OC259whe--0000001" "-f/tmp/magick-TangqdKw" "-f/tmp/magick-YlVipUcP" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-103-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-6TGYrMzl--0000001" "-f/tmp/magick-L_T2ATLD" "-f/tmp/magick-jzCYp1XV" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-103-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-Peu11amt--0000001" "-f/tmp/magick-T9GbC2nL" "-f/tmp/magick-8fcJPUp3" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-104-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-naBas1EB--0000001" "-f/tmp/magick-3D3zrxvT" "-f/tmp/magick-aL8F33lb" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-104-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-w695Z6MK--0000001" "-f/tmp/magick-F0rOcLj2" "-f/tmp/magick-MCw13pQj" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-105-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-u2mLY6RU--0000001" "-f/tmp/magick-pwqxfm4b" "-f/tmp/magick-N9tWnCgt" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-105-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-l35NJPS5--0000001" "-f/tmp/magick-PgqiUqMm" "-f/tmp/magick-_Pd9J2FD" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-106-1x2@_0.pdf':  @ error/pdf.c/ReadPDFImage/663.
convert: `%s' (%d) "gs" -q -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=4 -dGraphicsAlphaBits=4 "-r72x72"  "-sOutputFile=/tmp/magick-cvVI4nMh--0000001" "-f/tmp/magick-_XIReSny" "-f/tmp/magick-vCExcnZO" @ error/utility.c/SystemCommand/2094.
convert: Échec délégation Postscript `temp-106-1x2@_1.pdf':  @ error/pdf.c/ReadPDFImage/663.

Enfin c'est pas très important je ne pense pas devoir imprimer des fichiers aussi gros.
En revanche je n'ai pas encore pu tester l'impression. Mais je pense que ça devrait aller.

Donc encore merci !!!

Flo

Hors ligne

#8 Le 01/02/2012, à 07:43

Flo_

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

Bon voilà ce que j'ai fait :

#!/bin/sh

for var in "$*"; do
    pdftoppm $var temp
    for f in temp-*.ppm;do
    convert $f -crop 1x2+20+20@ -scale 200%  +repage +adjoin  $(basename $f .ppm)-1x2@_%d.pdf;
    done
    convert temp-*@*.pdf $(basename $var .pdf)-agrandi.pdf
    rm -r temp*
done

exit 0

et avec une commande personnalisée dans Thunar c'est parfait je met en résolu.
Merci beaucoup gigiair

Flo

Hors ligne

#9 Le 01/02/2012, à 07:55

sputnick

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

Flo_ a écrit :

Bon voilà ce que j'ai fait :

#!/bin/sh

for var in "$*"; do
    pdftoppm $var temp
    for f in temp-*.ppm;do
    convert $f -crop 1x2+20+20@ -scale 200%  +repage +adjoin  $(basename $f .ppm)-1x2@_%d.pdf;
    done
    convert temp-*@*.pdf $(basename $var .pdf)-agrandi.pdf
    rm -r temp*
done

exit 0

et avec une commande personnalisée dans Thunar c'est parfait je met en résolu.
Merci beaucoup gigiair

Flo


Attentions aux fichiers avec des espaces dans les noms, tu ne quote aucune variable smile


On ne peut pas mettre d'array dans un string!
https://sputnick.fr/

Hors ligne

#10 Le 01/02/2012, à 14:50

Flo_

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

arf c'est mon premier script je fais pas encore attention, c'est mieux comme ça ?

#!/bin/sh

for var in "$*"; do
    pdftoppm "$var" temp
    for f in temp-*.ppm;do
    convert $f -crop 1x2+20+20@ -scale 200%  +repage +adjoin  "$(basename $f .ppm)-1x2@_%d.pdf";
    done
    convert temp-*@*.pdf "$(basename $var .pdf)-agrandi.pdf"
    rm -r temp*
done

exit 0

Hors ligne

#11 Le 01/02/2012, à 16:28

sputnick

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

Pas pour $f


On ne peut pas mettre d'array dans un string!
https://sputnick.fr/

Hors ligne

#12 Le 01/02/2012, à 19:32

Flo_

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

J'ai aussi corrigé une erreur dans la 1e boucle for, la ça devrait être bon :

#!/bin/sh                                                                       

for var in "$@"; do
    pdftoppm "$var" temp
    for f in temp-*.ppm; do
        convert "$f" -crop 1x2+00+50@ -scale 200%  +repage +adjoin  "$(basename $f .ppm)-1x2@_%d.pdf";
    done
    convert "temp-*@*.pdf" "$(basename $var .pdf)-agrandi.pdf"
    rm -r temp*
done

exit 0

Flo

Dernière modification par Flo_ (Le 01/02/2012, à 19:33)

Hors ligne

#13 Le 04/02/2012, à 22:12

Flo_

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

Maj

#!/bin/sh

for var in "$@"; do
    pdftoppm "$var" temp
    for f in temp-*.ppm; do
    convert "$f" -crop 1x2+00+20@ -scale 100%  +repage +adjoin  "$(basename $f .ppm)-1x2@_%d.pdf";
    done
    convert "temp-*@*.pdf" "$(basename "$var" .pdf)-agrandi.pdf"
    rm -r temp*
done

exit 0

Flo

Hors ligne

#14 Le 04/04/2012, à 22:45

Flo_

Re : [Résolu] Transformer un pdf a4 en 2 pdf a4 de taille supérieur

Nouvelle maj
Les marges sont supprimées sur le PDF d'origine, ce qui permet d'agrandir encore un peu plus le fichier (ça ne fonctionne pas si on l'applique on PDF final) :

#!/bin/sh

for var in "$@"; do

    # Suppression des marges
    pdfcrop "$var" "$var"2

    # Convertir la PDF en images
    pdftoppm "$var"2 temp

    # Découpe des images et conversion pdf
    for f in temp-*.ppm; do
    convert "$f" -crop 1x2+00+10@ -scale 100%  +repage +adjoin  "$(basename $f .ppm)-1x2@_%d.pdf";
    done

    # Assemblage des fichiers PDF agrandis
    convert "temp-*@*.pdf" "$(basename "$var" .pdf)-agrandi.pdf"

    # Suppression des fichiers temporaires
    rm -r temp* "$var"2

done

exit 0

Flo

Hors ligne