1
0
mirror of https://gitlab.com/annimon/imagetagger.git synced 2024-09-20 05:44:20 +03:00
imagetagger/README.md
2021-01-12 14:08:59 +02:00

721 B

Image Tagger

This application allows adding tags to the images by pressing configured keys.

Configuration

In the configuration file imagetagger.json you can declare a directory for images, set cache entries limit and resolution, add filters and configure keys and tags.

Shortcuts

  • Left/Right — previous/next image
  • Enter — creates/updates .txt file with tags

Actual applying tag to image

By using ExifTool and simple script you can write tags to image:

# Bash
for i in *.jpg; do exiftool -q -overwrite_original -@ "$i.txt" "$i"; done
rem CMD
for /f "delims=" %f in ('dir /b "*.jpg"') do exiftool -q -overwrite_original -@ "%~nxf.txt" "%f"