Package Details: image-annotator-git 0.1.0-1

Git Clone URL: https://aur.archlinux.org/image-annotator-git.git (read-only, click to copy)
Package Base: image-annotator-git
Description: 使用Rust开发的贴图和图片标注工具,支持Linux wayland
Upstream URL: https://github.com/FengZhongShaoNian/annotator
Keywords: annotator,sticky,图片标注,贴图
Licenses: GPL3
Conflicts: annotator, annotator-git
Provides: annotator
Submitter: linfeng
Maintainer: linfeng
Last Packager: linfeng
Votes: 0
Popularity: 0.000000
First Submitted: 2026-03-21 06:07 (UTC)
Last Updated: 2026-03-21 06:07 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

linfeng commented on 2026-03-21 06:12 (UTC)

使用
annotator /path/to/your/image.png

建议搭配screenshot工具一起使用,可以实现一键截图并标注:

#!/bin/bash

mkdir -p /tmp/screenshot-sticky
time=$(date "+%Y%m%d-%H-%M-%S")
tmp_file="/tmp/screenshot-sticky/${time}.png"
# 使用screenshot工具进行截图并将图片保存到指定的路径
/path/to/screenshot "$tmp_file"
# 截图工具在截图过程中会在用户目录中生成一个screenshot.png文件,可以删掉它以避免污染用户目录
rm ${HOME}/screenshot.png
# 使用annotator对图片进行标注
/path/to/annotator "$tmp_file"

如果使用GNOME,建议搭配annotator-gnome-extension这个Gnome插件一起使用,这个插件提供窗口置顶和在dash-to-panel的任务栏中隐藏annotator窗口图标的功能。