From 11ada1bc2471b6cab31280bd03f19ec66dc626c1 Mon Sep 17 00:00:00 2001 From: Andreas Diesner Date: Fri, 5 Jan 2024 14:56:16 +0100 Subject: [PATCH] jhead: add page (#12001) * jhead: add page add german translation * jhead: fix wording Co-authored-by: Juri Dispan Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> --------- Co-authored-by: Juri Dispan Co-authored-by: Vitor Henrique <87824454+vitorhcl@users.noreply.github.com> --- pages.de/linux/jhead.md | 32 ++++++++++++++++++++++++++++++++ pages/linux/jhead.md | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 pages.de/linux/jhead.md create mode 100644 pages/linux/jhead.md diff --git a/pages.de/linux/jhead.md b/pages.de/linux/jhead.md new file mode 100644 index 000000000..3c4caa76a --- /dev/null +++ b/pages.de/linux/jhead.md @@ -0,0 +1,32 @@ +# jhead + +> Manipulation der Zeitstempel und EXIF Daten in Bilddateien. +> Weitere Informationen: . + +- Zeige alle EXIF Daten eines JPEG Bildes: + +`jhead {{pfad/zu/bild.jpg}}` + +- Setze die Dateizeit auf die EXIF Zeit (d.h. die Dateizeit wird geändert): + +`jhead -ft {{pfad/zu/bild.jpg}}` + +- Setze die EXIF Zeit auf die Dateizeit (d.h. die EXIF Zeit wird geändert): + +`jhead -dsft {{pfad/zu/bild.jpg}}` + +- Benenne alle Dateinamen der JPEG Bilder nach EXIF Datum/Zeit um (Format: Jahr_Monat_Tag-Stunde_Minute_Sekunde.jpg): + +`jhead -n%Y_%m_%d-%H_%M_%S *.jpg` + +- Rotiere alle Bilder im aktuellen Ordner verlustfrei (Basierend auf dem EXIF Orientierungstag): + +`jhead -autorot *.jpg` + +- Korrigiere den EXIF Zeitstempel (Format: Stunden:Minuten:Sekunden). Im Beispiel wird jedes Bild eine Stunde in die Vergangenheit geschoben (z.B. Zeitumstellung vergessen): + +`jhead -ta-1:00:00 *.jpg` + +- Entferne alle Metadaten einschließlich der Vorschaubilder aus der JPEG Datei: + +`jhead -purejpg {{pfad/zu/bild.jpg}}` diff --git a/pages/linux/jhead.md b/pages/linux/jhead.md new file mode 100644 index 000000000..3d1284d68 --- /dev/null +++ b/pages/linux/jhead.md @@ -0,0 +1,32 @@ +# jhead + +> Image timestamp and EXIF data manipulation. +> More information: . + +- Show all EXIF data: + +`jhead {{path/to/image.jpg}}` + +- Set the file's date and time to the EXIF create date (file creation date will be changed): + +`jhead -ft {{path/to/image.jpg}}` + +- Set the EXIF time to the file's date and time (EXIF data will be changed): + +`jhead -dsft {{path/to/image.jpg}}` + +- Rename all JPEG files based on the EXIF create date to `YYYY_MM_DD-HH_MM_SS.jpg`: + +`jhead -n%Y_%m_%d-%H_%M_%S *.jpg` + +- Rotate losslessly all JPEG images by 90, 180 or 270 based on the EXIF orientation tag: + +`jhead -autorot *.jpg` + +- Update all EXIF timestamps (Format: +- hour:minute:seconds) (example: forgot to change the camera's time zone - removing 1 hour from timestamps): + +`jhead -ta-1:00:00 *.jpg` + +- Remove all EXIF data (including thumbnails): + +`jhead -purejpg {{path/to/image.jpg}}`