Outils pour utilisateurs

Outils du site


issue80:tuto_-_de_jpg_vers_pdf

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
issue80:tuto_-_de_jpg_vers_pdf [2014/05/05 22:05] lecastillanissue80:tuto_-_de_jpg_vers_pdf [2014/05/07 12:12] (Version actuelle) auntiee
Ligne 1: Ligne 1:
  
-Fear not Blender fans – Nicholas will return next month. Well, assuming his employer will actually give him a day off and some free time that is...+**Fear not Blender fans – Nicholas will return next month. Well, assuming his employer will actually give him a day off and some free time that is...
  
-It's a common enough task, trying to convert multiple jpg files into one pdf, particularly when I don't need these to be converted with such high quality, I just want the black and white text readable.+It's a common enough task, trying to convert multiple jpg files into one pdf, particularly when I don't need these to be converted with such high quality, I just want the black and white text readable.**
  
-Ne craignez rien chers fans de Blender, Nicolas sera de retour le mois prochain. enfin, en supposant que son employeur lui donne un jour de congé et du temps libre... +Ne craignez rien chers fans de Blender, Nicolas sera de retour le mois prochain. Enfin, en supposant que son employeur lui donne un jour de congé et du temps libre... 
  
-C'est une tâche assez basique d'essayer de convertir plusieurs fichiers jpg dans un pdf, surtout quand je n'ai pas besoin que ce soit converti en haute qualité et que je veux seulement un texte en noir et blanc et lisible.+Essayer de convertir plusieurs fichiers jpg en un seul pdf est une tâche assez basique, surtout quand je n'ai pas besoin qu'ils soient convertis en haute qualité et que je veux seulement un texte en noir et blanc qui soit lisible.
  
-I can scan, crop, and monochrome in a graphics program, but compiling them into a single PDF booklet was always tricky. Which is how I started using ImageMagick.+**I can scan, crop, and monochrome in a graphics program, but compiling them into a single PDF booklet was always tricky. Which is how I started using ImageMagick.**
  
-Je peux numériser, recadrer, mettre en noir et blanc à l'aide d'un logiciel de retouche d'images mais mettre toutes les images dans un seul fichier PDF : c'est difficile. Voilà pourquoi j'ai commencé à utiliser ImageMagick.+Je peux numériser, rogner et convertir les photos en noir et blanc à l'aide d'un logiciel de retouche d'imagesmais mettre toutes les images dans un seul fichier PDF a toujours été difficile. Voilà pourquoi j'ai commencé à utiliser ImageMagick.
  
-ImageMagick is a command-line conversion program that is capable of so many more batch operations than this - resizing, compression, format conversion - and it's available on all platforms - Linux, Windows and Mac.+**ImageMagick is a command-line conversion program that is capable of so many more batch operations than this - resizing, compression, format conversion - and it's available on all platforms - Linux, Windows and Mac.**
  
-ImageMagick est un programme de conversion, en ligne de commande, qui est capable de faire du traitement par lot pour redimensionner, compresser ou convertir un format et il est disponible sur toutes les plateformes Linux, Windows et MacOsX.+ImageMagick est un programme de conversion, en ligne de commande, qui est capable de faire du traitement par lot pour redimensionner, compresser ou convertir un format et il est disponible pour toutes les plateformesLinux, Windows et MacOsX.
  
-Bear in mind that creating a PDF document from multiple JPEG images can take some time, and you may want to trial different settings for size and quality of output, so I suggest you make a copy of the JPEG files in a temporary folder to play around with and use Imagemagick on those –  NOT on your originals. Reducing the resolution as a first step will also make things much quicker.+**Bear in mind that creating a PDF document from multiple JPEG images can take some time, and you may want to trial different settings for size and quality of output, so I suggest you make a copy of the JPEG files in a temporary folder to play around with and use Imagemagick on those –  NOT on your originals. Reducing the resolution as a first step will also make things much quicker.
  
-Originally I was just using the basic:+Originally I was just using the basic:**
  
-Gardez à l'esprit que la création d'un document PDF à partir de plusieurs images JPEG peut prendre un certain temps, et vous voudrez peut-être essayer différents paramètres de taille et de qualité, donc je vous suggère de faire une copie des fichiers JPEG dans un dossier temporaire  pour faire des essais et utiliser ImageMagick sur ces copies - et NON PAS sur vos originaux. Commencer par réduire la résolution, cela permettra de rendre les choses beaucoup plus rapides. +Gardez à l'esprit que la création d'un document PDF à partir de plusieurs images JPEG peut prendre un certain temps. En outre, vous voudrez peut-être essayer différents paramètres de taille et de qualité je vous suggère donc de faire une copie des fichiers JPEG dans un dossier temporaire pour pouvoir faire des essais, puis d'utiliser ImageMagick sur ces copies - et NON PAS sur vos originaux. Commencer par réduire la résolution permettra de rendre les choses beaucoup plus rapides. 
  
-Au départ, je voulais faire les choses simplement en utilisant :+Au départ, je voulais faire les choses très simplement en utilisant :
  
 convert *.jpg output.pdf and/or convert *.jpg -adjoin output.pdf convert *.jpg output.pdf and/or convert *.jpg -adjoin output.pdf
Ligne 28: Ligne 28:
 convert *.jpg output.pdf et/ou convert *.jpg -adjoin output.pdf convert *.jpg output.pdf et/ou convert *.jpg -adjoin output.pdf
  
-which works most of the time. However, there's a bug in the convert routine which can in some versions give a segmentation fault when converting a number of JPEG files to one PDF file.+**which works most of the time. However, there's a bug in the convert routine which can in some versions give a segmentation fault when converting a number of JPEG files to one PDF file.
  
 What this command does is take all the .jpg's (or format of your choice) in a folder, and convert them to a single PDF - you can name it whatever you like. What this command does is take all the .jpg's (or format of your choice) in a folder, and convert them to a single PDF - you can name it whatever you like.
  
 You can avoid the segmentation fault bug and do the compression at the same time if you use: You can avoid the segmentation fault bug and do the compression at the same time if you use:
-convert *.JPG -compress Zip output.pdf+convert *.JPG -compress Zip output.pdf**
  
 qui fonctionne la plupart du temps. Cependant, il y a un bug dans la routine de conversion qui peut, dans certains cas, donner une erreur de segmentation lors de la conversion d'un certain nombre de fichiers JPEG vers un fichier PDF.  qui fonctionne la plupart du temps. Cependant, il y a un bug dans la routine de conversion qui peut, dans certains cas, donner une erreur de segmentation lors de la conversion d'un certain nombre de fichiers JPEG vers un fichier PDF. 
Ligne 42: Ligne 42:
 convert *.JPG -compress Zip output.pdf convert *.JPG -compress Zip output.pdf
  
-but the zip compression appears quite inefficient and results in huge file sizes.+**but the zip compression appears quite inefficient and results in huge file sizes.
  
 You could resize and lower the quality of the images using: You could resize and lower the quality of the images using:
  
-mogrify -resize 50% -quality 25+mogrify -resize 50% -quality 25**
  
 mais la compression zip apparait tout à fait inefficace et génère de trop gros fichiers.  mais la compression zip apparait tout à fait inefficace et génère de trop gros fichiers. 
Ligne 54: Ligne 54:
 mogrify -resize 50% -quality 25 mogrify -resize 50% -quality 25
  
-Which overwrites the originals. You can combine resizing and conversion using:+**Which overwrites the originals. You can combine resizing and conversion using:
  
-convert -quality 25 -resize 50% *.jpg -adjoin output.pdf+convert -quality 25 -resize 50% *.jpg -adjoin output.pdf**
  
 qui remplace les originaux. Vous pouvez combiner le redimensionnement et la conversion à l'aide de : qui remplace les originaux. Vous pouvez combiner le redimensionnement et la conversion à l'aide de :
 convert -quality 25 -resize 50% *.jpg -adjoin output.pdf convert -quality 25 -resize 50% *.jpg -adjoin output.pdf
  
-which works, but takes longer as you're combining batch operations.+**which works, but takes longer as you're combining batch operations.
  
 And yes, you can resizing images without overwriting the originals by specifying a new file name: And yes, you can resizing images without overwriting the originals by specifying a new file name:
Ligne 72: Ligne 72:
 convert '*.JPG' -resize 640x480 newfile%03d.jpg convert '*.JPG' -resize 640x480 newfile%03d.jpg
  
-which outputs the converted images as newfile001.jpg, newfile002.jpg, and so on. Alternatively, if you want to retain the original filename and prepend “new”, you could use a bit more code:+**which outputs the converted images as newfile001.jpg, newfile002.jpg, and so on. Alternatively, if you want to retain the original filename and prepend “new”, you could use a bit more code:
  
-for file in *.JPG ; do convert "$file" -resize 640x480 "new-${file}" ; done+for file in *.JPG ; do convert "$file" -resize 640x480 "new-${file}" ; done**
  
 cela convertit les images et les renomme en newfile001.jpg, newfile002.jpg, et ainsi de suite.  cela convertit les images et les renomme en newfile001.jpg, newfile002.jpg, et ainsi de suite. 
-Autre solution, si vous souhaitez conserver le nom d'origine et préfixer "new", vous pouvez utiliser un peu plus de code :+Une autre solution, si vous souhaitez conserver le nom d'origine et préfixer "new", serait d'utiliser un peu plus de code : 
 for file in *.JPG ; do convert "$file" -resize 640x480 "new-${file}" ; done for file in *.JPG ; do convert "$file" -resize 640x480 "new-${file}" ; done
  
-This is just a sample of what Imagemagick can do if you are prepared to experiment at the command-line.+**This is just a sample of what Imagemagick can do if you are prepared to experiment at the command-line.**
  
-Ceci est un simple exemple de ce qu'ImageMagick peut faire si vous êtes prêt à expérimenter la ligne de commande.+Ce n'est qu'un échantillon de ce qu'ImageMagick peut faire si vous êtes prêt à expérimenter avec la ligne de commande.
issue80/tuto_-_de_jpg_vers_pdf.1399320343.txt.gz · Dernière modification : 2014/05/05 22:05 de lecastillan