1
0
mirror of https://gitlab.com/annimon/imagetagger.git synced 2024-09-19 14:34:21 +03:00
Adding tags to the images by pressing configured keys
Go to file
2021-01-12 14:08:59 +02:00
gradle/wrapper Initial commit 2021-01-03 17:17:30 +02:00
src/main/java/com/annimon/imagetagger Fix JLabel foreground 2021-01-09 16:11:31 +02:00
.gitignore Initial commit 2021-01-03 17:17:30 +02:00
build.gradle Add proguard 2021-01-09 19:48:00 +02:00
gradlew Initial commit 2021-01-03 17:17:30 +02:00
gradlew.bat Initial commit 2021-01-03 17:17:30 +02:00
imagetagger.json Add config example, readme and license 2021-01-09 18:03:10 +02:00
LICENSE Add config example, readme and license 2021-01-09 18:03:10 +02:00
proguard.pro Add proguard 2021-01-09 19:48:00 +02:00
README_ru.md Add readme ru 2021-01-12 14:08:59 +02:00
README.md Add readme ru 2021-01-12 14:08:59 +02:00
settings.gradle Initial commit 2021-01-03 17:17:30 +02:00

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"