Copies the contents of the specified image, or selection, to the system clicpboard.
(ImagePlus imp)
| 40 | |
| 41 | /** Copies the contents of the specified image, or selection, to the system clicpboard. */ |
| 42 | public static void copyToSystem(ImagePlus imp) { |
| 43 | Clipboard cplugin = new Clipboard(); |
| 44 | cplugin.gImp = imp; |
| 45 | cplugin.setup(); |
| 46 | try { |
| 47 | cplugin.clipboard.setContents(cplugin, null); |
| 48 | } catch (Throwable t) {} |
| 49 | } |
| 50 | |
| 51 | void copy(boolean cut) { |
| 52 | ImagePlus imp = WindowManager.getCurrentImage(); |
no test coverage detected