*: fix errors reported by languagetool (#6069)

This commit is contained in:
Seth Falco
2021-08-15 19:59:09 +02:00
committed by GitHub
parent 3fbefc8b77
commit 3e4c519004
281 changed files with 433 additions and 429 deletions

View File

@@ -11,7 +11,7 @@
`jpegtran -rotate {{90|180|270}} {{path/to/image.jpg}} > {{path/to/output.jpg}}`
- Transpose the image across the upper left to lower right axis:
- Transpose the image across the upper-left to lower right axis:
`jpegtran -transpose {{path/to/image.jpg}} > {{path/to/output.jpg}}`
@@ -23,10 +23,10 @@
`jpegtran -grayscale {{path/to/image.jpg}} > {{path/to/output.jpg}}`
- Crop the image to a rectangular region of width `W` and height `H` from the upper left corner, saving the output to a specific file:
- Crop the image to a rectangular region of width `W` and height `H` from the upper-left corner, saving the output to a specific file:
`jpegtran -crop {{W}}x{{H}} -outfile {{path/to/output.jpg}} {{path/to/image.jpg}}`
- Crop the image to a rectangular region of width `W` and height `H`, starting at point `X` and `Y` from the upper left corner:
- Crop the image to a rectangular region of width `W` and height `H`, starting at point `X` and `Y` from the upper-left corner:
`jpegtran -crop {{W}}x{{H}}+{{X}}+{{Y}} {{path/to/image.jpg}} > {{path/to/output.jpg}}`