为什么图像不在剪贴板中

时间:2013-01-27 12:25:06

标签: python pygtk clipboard

我使用了Python script(灵感来自此处)

#! /usr/bin/python

import pygtk
pygtk.require('2.0')
import gtk
import os
import sys

def copy_image(f):
    assert os.path.exists(f), "file does not exist"
    image = gtk.gdk.pixbuf_new_from_file(f)

    clipboard = gtk.clipboard_get()
    clipboard.set_image(image)
    clipboard.store()

if __name__ == "__main__":
  copy_image(sys.argv[1])

将图像复制到剪贴板。 运行后

python imgclip.py img.png

我想用 ctrl + V 将图像粘贴到Inkscape,但Inkscape写入 Nothing on the clipboard

您知道如何纠正此问题,以便能够将图像复制到剪贴板,然后将其粘贴到Inkscape吗?

操作系统:Ubuntu 12.04

0 个答案:

没有答案