Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I often have to add my signature to a document. The document can be of different kinds. My signature is stored as an image in signature.jpg.

I would like to write a Java program that automatically places this image in the clipboard, so that I only have to paste it into the document.

share|improve this question
1  
Aaaaand.. do you have a question on something you already have or are you asking for a full solution on this? – OscarRyz Jun 11 '10 at 18:50

3 Answers

up vote 2 down vote accepted

You have to use me method: setContents from the Clipboard class.

Modified from: http://www.exampledepot.com/egs/java.awt.datatransfer/ToClipImg.html

import java.awt.*;
import java.awt.datatransfer.*;
public class LoadToClipboard {
    public static void main( String [] args ) {
        Toolkit tolkit = Toolkit.getDefaultToolkit();
        Clipboard clip = tolkit.getSystemClipboard();        
        clip.setContents( new ImageSelection( tolkit.getImage("StackOverflowLogo.png")) , null );
    }
}
class ImageSelection implements Transferable {
        private Image image;

        public ImageSelection(Image image) {
            this.image = image;
        }

        // Returns supported flavors
        public DataFlavor[] getTransferDataFlavors() {
            return new DataFlavor[]{DataFlavor.imageFlavor};
        }

        // Returns true if flavor is supported
        public boolean isDataFlavorSupported(DataFlavor flavor) {
            return DataFlavor.imageFlavor.equals(flavor);
        }

        // Returns image
        public Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException {
            if (!DataFlavor.imageFlavor.equals(flavor)) {
                throw new UnsupportedFlavorException(flavor);
            }
            return image;
        }
    }
share|improve this answer

Take a look at the java.awt.datatransfer.* classes. You'll essentially have to develop an implementation of the java.awt.datatransfer.Transferable interface that will transfer an image to the clipboard.

Edit: Found a couple of tutorials that might help:

share|improve this answer

I am answering because I don't seem to have the rights to comment.

Support - multilanguage, thanks for your complete solution. I ran your code as is, except that I replaced tolkit.getImage("StackOverflowLogo.png") by tolkit.getImage("MKSignature.jpg"). I got the following error:

Exception in thread "main" java.lang.IllegalArgumentException: Width (-1) and height (-1) cannot be <= 0
    at java.awt.image.DirectColorModel.createCompatibleWritableRaster(DirectColorModel.java:999)
    at sun.awt.datatransfer.DataTransferer.imageToStandardBytes(DataTransferer.java:1994)
    at sun.awt.windows.WDataTransferer.imageToPlatformBytes(WDataTransferer.java:267)
    at sun.awt.datatransfer.DataTransferer.translateTransferable(DataTransferer.java:1123)
    at sun.awt.windows.WDataTransferer.translateTransferable(WDataTransferer.java:163)
    at sun.awt.windows.WClipboard.setContentsNative(WClipboard.java:73)
    at sun.awt.datatransfer.SunClipboard.setContents(SunClipboard.java:93)
    at automateSignature.LoadToClipboard.main(LoadToClipboard.java:8)

I have tried to find a place in the code where width and height can be specified, but have not succeeded. I also examined the properties of the jpg file and the w and h are specified.

Any ideas?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.