mirror of https://github.com/CrimsonTome/tldr.git
29 lines
907 B
Markdown
29 lines
907 B
Markdown
# convert
|
|
|
|
> Outil de conversion d'image de Imagemagick.
|
|
> Plus d'informations : <https://imagemagick.org/script/convert.php>.
|
|
|
|
- Convertir une image JPG en PNG :
|
|
|
|
`convert {{image.jpg}} {{image.png}}`
|
|
|
|
- Redimensionner une image à 50% de ses dimensions d'origine :
|
|
|
|
`convert {{image.png}} -resize 50% {{image2.png}}`
|
|
|
|
- Redimensionner une image en conservant son ratio hauteur/largeur initial pour une taille maximum de 640x480 :
|
|
|
|
`convert {{image.png}} -resize 640x480 {{image2.png}}`
|
|
|
|
- Coller plusieurs images horizontallement :
|
|
|
|
`convert {{image1.png}} {{image2.png}} {{image3.png}} +append {{image123.png}}`
|
|
|
|
- Créer un gif à partir d'une série d'images avec un délai de 100ms entre chaque :
|
|
|
|
`convert {{image1.png}} {{image2.png}} {{image3.png}} -delay {{100}} {{animation.gif}}`
|
|
|
|
- Créer une image avec un simple arrière-plan uni :
|
|
|
|
`convert -size {{800x600}} "xc:{{#ff0000}}" {{image.png}}`
|