mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 23:26:02 +02:00
convert: add French translation
This commit is contained in:
parent
ca7c406cda
commit
92ef3cd007
1 changed files with 28 additions and 0 deletions
28
pages.fr/common/convert.md
Normal file
28
pages.fr/common/convert.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# 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}}`
|
Loading…
Add table
Reference in a new issue