This file is indexed.

/usr/share/doc/libkxl0-dev/html/kxlcopystretchimagerect.html is in libkxl0-dev 1.1.7-16ubuntu1.

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
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
   <meta name="GENERATOR" content="emacs">
   <meta name="Author" content="kacchan">
   <title>KXL_CopyStretchImageRect</title>
</head>
<body text="#000000" bgcolor="#f0f0dc" link="#3366FF" vlink="#3366FF" alink="#FF0000">

<a href="kxlcopyimage.html">Prev</a>
<a href="KXL.html">Top</a>
<a href="kxlcopystretchimageimm.html">Next</a>
<hr>

<b>Name</b><br><br>
<font size=+2>KXL_CopyStretchImageRect</font><br><br>

<b>Synopsis</b><br>
<pre>KXL_CopyStretchImageRect -- The arbitrary rectangles of an image are expanded or reduced and it copies to a new image.
</pre><br>

<b>Description</b><br>
<pre>KXL_Image *KXL_CopyStretchImageRect(KXL_Image *img, KXL_Rect rect, Uint16 width, Uint16 height);</pre><br>

<b>Arguments</b><br><br>
<table border="1">
<tr><td>img</td><td>Pointer of KXL_Image structure.</td></tr>
<tr><td>rect</td><td>KXL_Rect structure.</td></tr>
<tr><td>width</td><td>New width</td></tr>
<tr><td>height</td><td>New height</td></tr>
</table>
<br><br>

<b>Return Value</b><br><br>
Pointer of new KXL_Image structure.
<br><br><br>

<b>Exsample</b><br>
<pre>
<a href="./sample.bmp">sample.bmp</a>
<img src="./sample.gif">

#include &lt;KXL.h&gt;

int main(void)
{
  <b>KXL_Image *img, *copy_img;
  KXL_Rect rect;</b>

  KXL_CreateWindow(100, 100, "sample", 0);
  img = KXL_LoadBitmap("sample.bmp", 0);
  <b>rect.Left = 0;
  rect.Top = 0;
  rect.Width = img->Width;
  rect.Height = img->Height;
  copy_img = KXL_CopyStretchImageRect(img, rect, 78, 78);</b>
  
  KXL_SetDrawColor(0x00, 0x00, 0xff);
  KXL_ClearFrameImm(0, 0, 100, 100);
  KXL_PutImage(img, 10, 10);
  KXL_PutImage(copy_img, 20, 20);
  KXL_UpDateImm(0, 0, 100, 100);
  getchar();
  KXL_DeleteImage(img);
  KXL_DeleteImage(copy_img);
  KXL_DeleteWindow();
  return 0;
}
</pre>

</body>
</html>