Linux工具 - Flameshot详解

一、简介

Linux工具 - Flameshot详解_第1张图片

Flameshot是一款功能强大但易于使用的屏幕截图软件,中文名称火焰截图。Flameshot 简单易用并有一个CLI版本,所以你也可以从命令行来进行截图。Flameshot 是一个Linux发行版中完全免费且开源的截图工具。

特性:

  • 外观可定制化。
  • 易于使用。
  • 在app截屏编辑。
  • DBus接口。
  • 上传至Imgur。

我们之前介绍的Spectacle功能有限,往往只能单纯的截图截屏,无法完成对截图的编辑、涂画、标记文本等功能。与之相比,Flameshot功能强大了很多,它不仅能截图,更能对截图进行充分的编辑、涂画、标记、具备的功能更强于QQ截图。Flameshot几乎拥有截屏的所有功能:添加注释、编辑图片、模糊处理或者对要点做高亮等等功能。

二、源码及下载地址

GitHub - flameshot-org/flameshot: Powerful yet simple to use screenshot software

Linux工具 - Flameshot详解_第2张图片

安装

1 通过apt下载

#Ubuntu18.04以上版本
sudo apt-get install flameshot

2 通过git下载源码安装最新版本

git clone https://github.com/flameshot-org/flameshot.git
cd flameshot
#由于flameshot是由Qt开发的图形界面软件,编译需要安装qmake以及相关依赖
sudo apt install -y git g++ build-essential qt5-qmake qt5-default qttools5-dev-tools
qmake
sudo make install

三、使用方法

以下内容源引自Flameshot官网。

命令示例

  • Capture with GUI —— 通过GUI捕获
$ flameshot gui
  • Capture with GUI with custom save path —— 通过GUI捕获并保存到指定路径
$ flameshot gui -p ~/myStuff/captures
  • Capture with GUI after 2 seconds delay (can be useful to take screenshots of mouse hover tooltips, etc.) —— 在2秒后通过GUI捕获(在如捕获鼠标悬停工具提示的屏幕截图等场景时非常有用)
$ flameshot gui -d 2000
  • Fullscreen capture with custom save path (no GUI) and delayed —— 延时全屏捕获并保存到指定路径(非GUI)
$ flameshot full -p ~/myStuff/captures -d 5000
  • Fullscreen capture with custom save path copying to clipboard —— 全屏捕获并保存到指定路径,同时复制到剪贴板
$ flameshot full -c -p ~/myStuff/captures
  • Capture the screen containing the mouse and print the image (bytes) in PNG format —— 捕获包含鼠标的屏幕并且以PNG格式打印图像
$ flameshot screen -r
  • 捕获1号屏幕并将其复制到剪贴板
$ flameshot screen -n 1 -c

设置快捷键

Linux工具 - Flameshot详解_第3张图片

你可能感兴趣的:(Linux,linux,ubuntu,qt)