Outils pour utilisateurs

Outils du site


informatique:imagemagick

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
Prochaine révision
Révision précédente
informatique:imagemagick [2024/12/04 06:00] alexisinformatique:imagemagick [2024/12/04 06:09] (Version actuelle) – ↷ Liens modifiés en raison d'un déplacement. alexis
Ligne 1: Ligne 1:
 ====== ImageMagick ====== ====== ImageMagick ======
 <catlist informatique:imagemagick -sortByTitle -noHead> <catlist informatique:imagemagick -sortByTitle -noHead>
- 
-===== Modification d'images ===== 
  
 Sauf indication contraire, pour toutes les manipulations, les photos utilisées seront les suivantes :\\ Sauf indication contraire, pour toutes les manipulations, les photos utilisées seront les suivantes :\\
-{{:multimedia:climbing.jpg?nolink|}} +{{informatique:imagemagick:climbing.jpg?nolink|}} 
-{{:multimedia:knot.jpg?nolink|}}+{{informatique:imagemagick:knot.jpg?nolink|}}
  
-==== Supprimer le canal alpha ==== 
-<WRAP prewrap> 
-<code> 
-mogrify -background white -alpha remove *.png 
-</code> 
-</WRAP> 
  
-==== Dessiner sur une image ==== +===== Pour aller plus loin =====
-Pour mettre à jour la page [[jeux:videos:playstation_1:driver_2|Driver 2]], j'ai du annoter quelques cartes que je ne trouvais plus. +
- +
-Je me suis servi des documents suivants pour produire les images ci-dessous : +
-  * [[https://www.imagemagick.org/Usage/text/#draw|Text Handling -- IM v6 Examples]] +
-  * [[https://www.imagemagick.org/Usage/draw/|Drawing -- IM v6 Examples]] +
-  * [[https://www.imagemagick.org/Usage/canvas/#gradient|Canvas Creation -- IM v6 Examples]] +
-  * [[http://www.imagemagick.org/discourse-server/viewtopic.php?t=28580|About set option - ImageMagick]] +
-  * [[https://imagemagick.org/script/command-line-options.php#set|Command-line Options @ ImageMagick]] +
- +
-<WRAP group> +
-<WRAP half column> +
-{{ jeux:videos:playstation:driver.2:chicago.jpg?200|}} +
-{{ jeux:videos:playstation:driver.2:chicago.original.jpg?200|}} +
-<WRAP prewrap> +
-<code bash> +
-convert chicago.original.jpg -pointsize 20 -draw 'fill black rectangle 258,73 282,102 fill white rectangle 260,75 280,100 fill black text 265,95 "1" fill black rectangle 279,99 285,105' -draw 'fill black rectangle 303,118 327,147 fill white rectangle 305,120 325,145 fill black text 310,140 "2" fill black rectangle 300,115 306,121' chicago.jpg +
-</code> +
-</WRAP> +
-</WRAP> +
-<WRAP half column> +
-{{ jeux:videos:playstation:driver.2:havana.jpg?200|}} +
-{{ jeux:videos:playstation:driver.2:havana.original.jpg?200|}} +
-<WRAP prewrap> +
-<code bash> +
-convert havana.original.jpg -pointsize 20 -draw 'fill black rectangle 90,400 114,429 fill white rectangle 92,402 112,427 fill black text 97,422 "1"' havana.jpg +
-</code> +
-</WRAP> +
-</WRAP> +
-</WRAP> +
-<WRAP group> +
-<WRAP half column> +
-{{ jeux:videos:playstation:driver.2:vegas.jpg?200|}} +
-{{ jeux:videos:playstation:driver.2:vegas.original.jpg?200|}} +
-<WRAP prewrap> +
-<code bash> +
-convert vegas.original.jpg -pointsize 20 -draw 'fill black rectangle 446,1163 470,1192 fill white rectangle 448,1165 468,1190 fill black text 453,1185 "1" fill black rectangle 443,1160 449,1166' -draw 'fill black rectangle 378,1022 402,1053 fill white rectangle 380,1024 400,1051 fill black text 385,1044 "2" fill black rectangle 375,1050 381,1056' -draw 'fill black rectangle 179,918 203,947 fill white rectangle 181,920 201,945 fill black text 186,940 "3" fill black rectangle 176,944 182,950' vegas.jpg +
-</code> +
-</WRAP> +
-</WRAP> +
-<WRAP half column> +
-{{ jeux:videos:playstation:driver.2:rio.jpg?200|}} +
-{{ jeux:videos:playstation:driver.2:rio.original.jpg?200|}} +
-<WRAP prewrap> +
-<code bash> +
-convert rio.original.jpg -pointsize 20 -draw 'fill black rectangle 353,94 377,123 fill white rectangle 355,96 375,121 fill black text 360,116 "1" fill black rectangle 374,120 380,126' -draw 'fill black rectangle 271,760 295,789 fill white rectangle 273,762 293,787 fill black text 278,782 "2" fill black rectangle 292,786 298,792' -draw 'fill black rectangle 114,824 138,853 fill white rectangle 116,826 136,851 fill black text 121,846 "3" fill black rectangle 135,850 141,856' -draw 'fill black rectangle 191,406 215,435 fill white rectangle 193,408 213,433 fill black text 198,428 "4" fill black rectangle 212,432 218,438' rio.jpg +
-</code> +
-</WRAP> +
-</WRAP> +
-</WRAP> +
- +
-==== Pour aller plus loin ====+
   * [[http://www.fmwconcepts.com/imagemagick/|Fred's ImageMagick Scripts]]   * [[http://www.fmwconcepts.com/imagemagick/|Fred's ImageMagick Scripts]]
  
-===== Autre ===== 
- 
-==== Afficher les caractéristiques d'une image ==== 
-<WRAP prewrap> 
-<code> 
-identify climbing.jpg 
-</code> 
-</WRAP> 
-Résultat : 
-<WRAP prewrap> 
-<code> 
-climbing.jpg JPEG 300x200 300x200+0+0 8-bit DirectClass 18.8KB 0.000u 0:00.000 
-</code> 
-</WRAP> 
- 
-==== Écrire dans une image ==== 
-**Le résultat d'une commande** 
-<WRAP prewrap> 
-<code> 
-convert -border 15x15 -bordercolor "#FFFFFF" label:"$(ls climbing*)" ls.jpg 
-</code> 
-</WRAP> 
- 
-**Le contenu d'un fichier** 
-<WRAP prewrap> 
-<code> 
-convert -fill '#007bc5' -density 200 -font aescrawl.ttf -trim +repage -border 5 -bordercolor white -background white "label:@contact.txt" contact.png 
-</code> 
-</WRAP> 
- 
-**Du texte positionné** 
-<WRAP prewrap> 
-<code> 
-convert -size 200x30 xc:transparent -font /usr/share/fonts/TTF/DejaVuSansMono.ttf -fill black -pointsize 16 -draw "text 0,16 'climbing is fun'" -trim text.png 
-</code> 
-</WRAP> 
-==== Générer un fichier PDF vide ==== 
- 
-<WRAP prewrap> 
-<code bash> 
-convert xc:none -page A4 a.pdf 
-</code> 
-</WRAP> 
-Astuce trouvée [[http://unix.stackexchange.com/a/277987|ici]] 
-<WRAP important> 
-Si la commande retourne l'erreur ''convert-im6.q16: not authorized `a.pdf' @ error/constitute.c/WriteImage/1037.'', il faut modifier la politique de sécurité utilisée par ImageMagick. 
-Pour cela, il faut modifier le fichier ''/etc/ImageMagick-6/policy.xml'' en faisant le changement suivant : 
-<WRAP prewrap> 
-<code xml> 
-<!-- Avant : politique de sécurité appliquée aux fichiers PDF, aucune action autorisée --> 
-<policy domain="coder" rights="none" pattern="PDF" /> 
- 
-<!-- Après : politique de sécurité appliquée aux fichiers PDF, lecture et écriture autorisée --> 
-<policy domain="coder" rights="read|write" pattern="PDF" /> 
-</code> 
-</WRAP> 
-</WRAP> 
- 
-==== Supprimer les données EXIF d'une image ==== 
-<WRAP prewrap> 
-<code> 
-mogrify -strip climbing.jpg 
-</code> 
-</WRAP> 
informatique/imagemagick.1733320801.txt.gz · Dernière modification : 2024/12/04 06:00 de alexis