This file is indexed.

/usr/share/doc/grads/html/gradcomdprintim.html is in grads 2:2.0.1-1build1.

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
<!--Copyright (C) 1988-2005 by the Institute of Global Environment and Society (IGES). See file COPYRIGHT for more information.-->

<html>
<head>
<title>GrADS Commands: printim</title>
</head>
<body bgcolor="e0f0ff" text="#000000">

<h2><b>printim</b></h2>
<p>
The <code>printim</code> command will produce a PNG, GIF, or JPG formatted
image file based on the current contents of the metabuffer, which is
usually the stuff displayed on the screen, minus any widgets.  The
syntax is:

<p>
<ul>
  <code>printim <i>filename options</i></code> 
</ul>

<p>
where: 
<p>
<ul>
  <code><i>filename:</i>&nbsp;&nbsp;</code>The name of the output file. If this 
  file exists, it will be replaced. 
  <br>
  <code> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code>If the filename ends with &quot;.png&quot; or &quot;.PNG&quot; then GrADS will automatically create the image in PNG format<br>
  <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code>If the filename ends with &quot;.gif&quot; or &quot;.GIF&quot; then GrADS will automatically create the image in GIF format<br>
  <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</code>If the filename ends with &quot;.jpg&quot; or &quot;.JPG&quot; then GrADS will automatically create the image in JPEG format<br>
  <p> <code><i>options:</i>&nbsp;&nbsp;&nbsp;png </code> 
    - produce PNG output (default)<br>
    <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;gif </code>
     - produce GIF output <br>
    <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;jpg </code>
     - produce JPEG output <br>
    <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;black </code>
     - use black background (default is current display setting)<br>
    <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;white </code>
     - use white background (default is current display setting)<br>
    <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;xNNN </code> 
    - horizontal size in NNN pixels<br>
    <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;yNNN </code> 
    - vertical size in NNN pixels<br>
    <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-t NN </code> 
    - color number NN is transparent<br>
    <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-b <i>bgImage</i> </code> 
    - Image file <code><i>bgImage</i></code> s included in the background of the output. <br>
    <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-f <i>fgImage</i> </code> 
    - Image file <code><i>fgImage</i></code> is included in the foreground of the output.<br>
  </p>
</ul>
<p> One or more <code><i>options</i></code> may be given in any order. <code><i>bgImage</i></code> 
  and <code><i>fgImage</i></code> must be PNG format. 
<p>
<h3>Usage Notes</h3>

<ol>
<li><code>printim</code> works with GrADS version 1.8 (or higher). 
<li><code>printim</code> can be used while in batch mode. 
<li>The option for JPEG formatted output became 'official' with version 2.0.a5. 
</ol>

<p>
<h3>Examples </h3>

<p>
The following command produces a 1000x800 PNG image into file out.png:
<p>
<ul><code>printim out.png x1000 y800</code></ul>

<p>
This command produces a 800x600 GIF image, with a white background, 
into file gifimage.out:
<p>
<ul>
  <p><code>printim gifimage.out gif x800 y600 white</code></p>
</ul>
  
<p>This command produces a GIF image with transparent color 0 and a background 
  image mybkg.png. This means that in image.gif, the background image mybkg.png 
  will be seen wherever the color 0 (background) appeared in the current display. 
</p>
<ul>
  <p><code>printim image.gif -b mybkg.png -t 0 </code><br>
  
</ul>  

</body>
</html>