jpegtran
Perform lossless transformation of JPEG files. More information: https://manned.org/jpegtran.
- 
Mirror an image horizontally or vertically:
 jpegtran -flip {{horizontal|vertical}} {{path/to/image.jpg}} > {{path/to/output.jpg}}
- 
Rotate an image 90, 180 or 270 degrees clockwise:
 jpegtran -rotate {{90|180|270}} {{path/to/image.jpg}} > {{path/to/output.jpg}}
- 
Transpose the image across the upper-left to lower right axis:
 jpegtran -transpose {{path/to/image.jpg}} > {{path/to/output.jpg}}
- 
Transverse the image across the upper right to lower left axis:
 jpegtran -transverse {{path/to/image.jpg}} > {{path/to/output.jpg}}
- 
Convert the image to grayscale:
 jpegtran -grayscale {{path/to/image.jpg}} > {{path/to/output.jpg}}
- 
Crop the image to a rectangular region of width Wand heightHfrom 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 Wand heightH, starting at pointXandYfrom the upper-left corner:
 jpegtran -crop {{W}}x{{H}}+{{X}}+{{Y}} {{path/to/image.jpg}} > {{path/to/output.jpg}}
License and Disclaimer
The content on this page is copyright © 2014—present the tldr-pages team and contributors.This page is used with permission under Creative Commons Attribution 4.0 International License.
While we do attempt to make sure content is accurate, there isn't a warranty of any kind.