2019-10-18 15:01:19 +01:00
|
|
|
|
# convert
|
|
|
|
|
|
2021-05-20 21:13:41 +01:00
|
|
|
|
> Outil de conversion d'image d'ImageMagick.
|
2021-01-30 17:03:18 +00:00
|
|
|
|
> Plus d'informations : <https://imagemagick.org/script/convert.php>.
|
2019-10-18 15:01:19 +01:00
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Convertir une image JPG en PNG :
|
2019-10-18 15:01:19 +01:00
|
|
|
|
|
|
|
|
|
`convert {{image.jpg}} {{image.png}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Redimensionner une image à 50% de ses dimensions d'origine :
|
2019-10-18 15:01:19 +01:00
|
|
|
|
|
|
|
|
|
`convert {{image.png}} -resize 50% {{image2.png}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Redimensionner une image en conservant son ratio hauteur/largeur initial pour une taille maximum de 640x480 :
|
2019-10-18 15:01:19 +01:00
|
|
|
|
|
|
|
|
|
`convert {{image.png}} -resize 640x480 {{image2.png}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Coller plusieurs images horizontallement :
|
2019-10-18 15:01:19 +01:00
|
|
|
|
|
|
|
|
|
`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`
|
|
|
|
|
|
2021-04-20 19:15:58 +01:00
|
|
|
|
- Coller plusieurs images verticalement :
|
|
|
|
|
|
|
|
|
|
`convert {{image1.png}} {{image2.png}} {{image3.png}} -append {{image123.png}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Créer un gif à partir d'une série d'images avec un délai de 100ms entre chaque :
|
2019-10-18 15:01:19 +01:00
|
|
|
|
|
|
|
|
|
`convert {{image1.png}} {{image2.png}} {{image3.png}} -delay {{100}} {{animation.gif}}`
|
|
|
|
|
|
2021-01-30 17:03:18 +00:00
|
|
|
|
- Créer une image avec un simple arrière-plan uni :
|
2019-10-18 15:01:19 +01:00
|
|
|
|
|
|
|
|
|
`convert -size {{800x600}} "xc:{{#ff0000}}" {{image.png}}`
|