我使用了这个Python
脚本(灵感来自这里)
#! /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
我想将图像粘贴到Inkscape
with ctrl+V,但Inkscape
写入
Nothing on the clipboard
.
您知道如何更正此问题以便能够将图像复制到剪贴板然后将其粘贴到Inkscape
吗?
操作系统:Ubuntu 12.04