/usr/share/doc/gdl-coyote/html/clipboard.html is in gdl-coyote 2016.11.13-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | <html>
<head>
<TITLE>coyote: CLIPBOARD</TITLE>
<style>
dt {font-weight: bold;}
</style>
</head>
<body>
<H1><a href="index.html">coyote</a>: CLIPBOARD</H1>
<ul>
<li><a href=Graphics.html>coyote/Graphics</a></li>
<li><a href="/usr/share/gnudatalanguage/coyote/clipboard.pro">[Source code]</a></li>
</ul>
<dl>
<dt>NAME</dt>
<dd><pre>
CLIPBOARD
</pre></dd>
</dl>
<dl>
<dt>PURPOSE</dt>
<dd><pre>
The purpose of this program is to copy the contents of a
graphics window to the clipboard for subsequent pasting into
applications such as Photoshop or Powerpoint.
</pre></dd>
</dl>
<dl>
<dt>AUTHOR</dt>
<dd><pre>
FANNING SOFTWARE CONSULTING
David Fanning, Ph.D.
1645 Sheely Drive
Fort Collins, CO 80526 USA
Phone: 970-221-0438
E-mail: david@idlcoyote.com
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
</pre></dd>
</dl>
<dl>
<dt>CATEGORY</dt>
<dd><pre>
Graphics.
</pre></dd>
</dl>
<dl>
<dt>CALLING SEQUENCE</dt>
<dd><pre>
CLIPBOARD, window_index
</pre></dd>
</dl>
<dl>
<dt>OPTIONAL INPUTS</dt>
<dd><pre>
window_index: The window index number of the graphics window to
copy. If absent, the current graphics window is used
by default.
</pre></dd>
</dl>
<dl>
<dt>KEYWORDS</dt>
<dd><pre>
All COLOR_QUAN keywords are allowed. In particular, if you are
taking snapshots of line plots with few colors in them, you may
get better results by calling the program with the CUBE=6 keyword
set. Otherwise, white colors can sometimes be a bit gray.
</pre></dd>
</dl>
<dl>
<dt>OUTPUTS</dt>
<dd><pre>
None.
</pre></dd>
</dl>
<dl>
<dt>COMMON BLOCKS</dt>
<dd><pre>
None.
</pre></dd>
</dl>
<dl>
<dt>DEPENDENCIES</dt>
<dd><pre>
Uses the IDLgrClipboard object introduced in IDL 5.2(?).
</pre></dd>
</dl>
<dl>
<dt>PROCEDURE</dt>
<dd><pre>
Copies the window contents to a clipboard object.
</pre></dd>
</dl>
<dl>
<dt>EXAMPLE</dt>
<dd><pre>
IDL> Window
IDL> Plot, Findgen(11)
IDL> CLIPBOARD
</pre></dd>
</dl>
<dl>
<dt>RESTRICTIONS</dt>
<dd><pre>
May not work for all applications. Applications tested successfully
include: Framemaker, Powerpoint, Photoshop, Excel, Microsoft Word.
Converts 24-bit images to 2D images with color tables.
</pre></dd>
</dl>
<dl>
<dt>MODIFICATION HISTORY</dt>
<dd><pre>
Written by: David W. Fanning, 24 October 2001.
Added _EXTRA keyword to pass COLOR_QUAN keywords along. 28 Oct 2002. DWF.
</pre></dd>
</dl>
</body>
</html>
|