在黑色全屏背景上显示图像,关闭任何用户事件

时间:2013-05-11 17:08:58

标签: bash graphicsmagick

我正在编写一个小帮助程序脚本,将X剪贴板内容转换为QR代码并显示结果,以便我可以使用智能手机扫描代码。

基本上,这行bash工作(有错误处理,它是十行):

xclip -o | qrencode -s 5 -o - | display -backdrop -background "#000"

我将QR码置于全屏黑色背景中心。尼斯。但是在这种情况下,GraphicsMagick的显示实用程序有一个可用性问题:我无法轻易退出。我需要右键单击图像(不在背景上)并选择菜单上的最后一项,该菜单现在将其文本显示为黑色。

我看到了解决此问题的多种方法,但没有看到任何解决方案:

  1. 获取GraphicsMagick的display实用程序以退出任何事件,无论是鼠标单击还是按键。
  2. 启动display到后台并以某种方式捕获UI事件。然后杀死display
  3. 使用可以更轻松退出的其他图像查看器。没有找到具有背景功能的。
  4. 基本上,我正在寻找的是一种从bash脚本显示图像的简单方法,以当前X屏幕为中心,背景为黑色(奖励:半透明黑色背景),点击鼠标即可解散或按键。此外,图像下方的一些自由格式文本标题会很好,所以我不必乱用graphicsmagick将其添加到图像中。

1 个答案:

答案 0 :(得分:0)

好吧,不知怎的,我最终自己写了那个图像浏览器...在线...用内联python和Tkinter。如果有人想使用它并且bash中嵌入的python不是太可怕的想法,这里是我的“剪贴板到QR码”bash脚本。将其保存在某处,使其可执行并在桌面环境中注册以在< Ctrl-Q>上运行或者在面板中指定一个启动器。

依赖关系:python python -tk qrencode xclip

#!/bin/bash

TMPDIR=$(mktemp -d)
trap 'rm -rf $TMPDIR; exit 1' 0 1 2 3 13 15

if xclip -o | qrencode -s 2 -m 2 -o - > $TMPDIR/qrcode.png
then 
    TXT=$(xclip -o)
elif xclip -o -selection clipboard | qrencode -s 2 -m 2 -o - > $TMPDIR/qrcode.png
then
    TXT=$(xclip -o -selection clipboard)
else
    STXT=$( echo "$(xclip -o)" | head -n 1 | cut -c 1-50 )
    notify-send -i unknown "Conversion Error" "Cannot provide a QR Code for the current clipboard contents:\
    \
    $STXT ..."
    exit 0
fi
echo "$TXT" > $TMPDIR/content.txt
python - <<PYEND 
import Tkinter,Image,ImageTk
tk = Tkinter.Tk()
tk.geometry("%dx%d+0+0" % (tk.winfo_screenwidth(), tk.winfo_screenheight()))
tk.wm_focusmodel(Tkinter.ACTIVE)
def handler(event):
    tk.quit()
    tk.destroy()
tk.bind("<Key>", handler)   
tk.bind("<KeyPress>", handler)
tk.bind("<Button>", handler)
tk.protocol("WM_DELETE_WINDOW", tk.destroy)
txt = ""
tkim = None
try:
    img = Image.open("$TMPDIR/qrcode.png").convert()
    while (img.size[1] < tk.winfo_screenheight() * 0.4) and (img.size[0] < tk.winfo_screenwidth() * 0.45):
        img = img.resize(([x*2 for x in img.size]), Image.NONE)
    tkim = ImageTk.PhotoImage(img)
    txt = file("$TMPDIR/content.txt").read()
except Exception as e:
    txt = "Error while retrieving text: " + str(e)

lh = Tkinter.Label(tk, text="QR Code from Clipboard", font=("sans-serif", 12), background="#000", foreground="#FFF", justify=Tkinter.CENTER).pack(fill=Tkinter.BOTH, expand=1)
li = Tkinter.Label(tk, image=tkim, background="#000", foreground="#FFF", justify=Tkinter.CENTER).pack(fill=Tkinter.BOTH, expand=1)
lt = Tkinter.Label(tk, text=txt, font=("sans-serif", 9), background="#000", foreground="#FFF", justify=Tkinter.LEFT, wraplength=tk.winfo_screenwidth()*0.9).pack(fill=Tkinter.BOTH, expand=1)
tk.overrideredirect(True)
tk.lift()
tk.focus_force()
tk.grab_set()
tk.grab_set_global()
tk.mainloop() 
PYEND
rm -rf $TMPDIR
trap 0 1 2 3 13 15

更新:现在也在GitHub上:https://github.com/orithena/clip2qr