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
2024-02-10 19:44:42 +02:00
gradle/wrapper Bump dependency versions 2024-02-10 19:44:42 +02:00
src/main/java/com/annimon/imagetagger Ability to switch profiles with Page Up / Page Down 2023-02-02 19:23:05 +02:00
.gitignore Initial commit 2021-01-03 17:17:30 +02:00
build.gradle Bump dependency versions 2024-02-10 19:44:42 +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
README.md Ability to switch profiles with Page Up / Page Down 2023-02-02 19:23:05 +02:00
README.ru.md Rename readmes 2024-02-10 15:39:17 +00:00
README.uk.md Add Ukrainian README 2024-02-10 15:38:22 +00: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
  • F3 — change background color

Filtration

To filter input images you can set a filter.

For example: "filter": "+morning" will show files containing morning tag, "filter": "-morning" — files not containing morning tag

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"

The program requires Java 11 to run.

Changelog

1.2

  • Ability to change font size with Ctrl+Plus and Ctrl+Minus
  • Ability to change profiles with Page Up and Page Down
  • Dark background and maximized window by default

1.1

  • Added an ability to set modifiers Ctrl/Alt: Ctrl+Alt+s, Ctrl+Alt+S.
  • F3 for changing background color