15

I can copy image in Gimp and paste it to OpenOffice document.

How to do it (copy or paste image) from command line?

barlop
  • 23,380
  • 43
  • 145
  • 225
Vi.
  • 16,755
  • 32
  • 111
  • 189

3 Answers3

7

I believe the reason why Leo Alekseyev script does not work sometimes (on some systems) is explained in this answer to a similar question. Important part quoted here:

One oddity that is different from most other systems: if the program owning the selection (clipboard) goes away, so does the selection.

When i run Leo's script in python shell, it is working, as long as the shell is running. So i think the clipboard data is lost, when the script is terminated. The solution posted in the answer, is working for me:

#!/usr/bin/env python
import gtk 
import sys

count = 0
def handle_owner_change(clipboard, event):
    global count
    print 'clipboard.owner-change(%r, %r)' % (clipboard, event)
    count += 1
    if count > 1:
       sys.exit(0)

image = gtk.gdk.pixbuf_new_from_file(sys.argv[1])
clipboard = gtk.clipboard_get()
clipboard.connect('owner-change', handle_owner_change)
clipboard.set_image(image)
clipboard.store()
gtk.main()

Update from _Vi: For completeness, adding the clipboard->file script:

#!/usr/bin/python
import gtk, pygtk
pygtk.require('2.0')
import sys, os

clipboard = gtk.clipboard_get()
img = clipboard.wait_for_image()
img.save(sys.argv[1], "png", {})
wnm
  • 171
  • 1
  • 2
6

As found here, the key to paste binary data to a file with xclip is to tell what Media Types you have on clipboard. For PNG you can:

xclip -selection clipboard -t image/png -o > "`date '+%Y-%m-%d_%T'`.png"

Or image/jpeg and .jpg for JPEG.

So now on my ~/Dropbox/.mybashrc I add an alias (clipboard2photo) to easly paste to image file (maybe someday we'll have it on Nautilus).

pabloab
  • 110
  • 1
  • 4
  • As noted in first link: NOTE: Some research shows that you need xclip from SVN revision 81 (from April 2010) or later to have the required -t option. Or apply [the patches](http://sourceforge.net/p/xclip/patches/4/) yourself. – i336_ Mar 03 '17 at 05:34
1

The following python/pygtk script does the job:

#!/usr/bin/python
import gtk, pygtk
pygtk.require('2.0')
import sys, os

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()

copy_image(sys.argv[1]);

(Source: http://ubuntuforums.org/showthread.php?t=1689889)

To use this, sudo apt-get install python pygtk, paste the above code into a script, chmod +x to make executable, and you should be good to go.

Leo Alekseyev
  • 133
  • 2
  • 8
  • Copied little png picture using this script. Can't paste it neither to OpenOffice nor into Gimp ("There is no image data in clipboard to paste"). Don't work. After copying actual picture in Gimp and using this script the buffer reverts to text that was before that. – Vi. Dec 15 '11 at 14:22
  • I just tried: `wget http://upload.wikimedia.org/wikipedia/commons/d/d9/Test.png && ./test.py Test.png`, where test.py is exactly what's pasted here. Pastes fine into Gimp. – Leo Alekseyev Dec 15 '11 at 14:34
  • Tried with Test.png. "There is no image data in clipboard to paste". Does it depend on running Gnome? How to debug this? I can successfully copy image in Gimp and paste in Openoffice, so in general copying works. – Vi. Dec 16 '11 at 14:04
  • E: Unable to locate package pygtk – qed Jan 04 '14 at 20:00