This file is indexed.

/usr/share/doc/tkpng/README is in tkpng 0.9-1.

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
TkPNG - PNG Photo Image extension for Tcl/Tk

Copyright (c) 2006 Muonics, Inc.

See the file "license.terms" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.

This package implements support for loading and using PNG images with
Tcl/Tk.  Although other extensions such as Img also add support for PNG
images, I wanted something that was lightweight, did not depend on libpng,
and that would be suitable for inclusion in the Tk core.  Tk does not
currently support any image formats natively that take advantage of its
internal support for alpha blending, and alpha antialiasing and drop
shadows really go a long way toward beautifying Tk applications.

The package supports the full range of color types, channels and bit depths
from 1 bit black & white to 16 bit per channel full color with alpha (64
bit RGBA) and interlacing.  Ancillary "chunks" such as gamma, color
profile, and text fields are ignored, although they are checked at a
minimum for correct CRC.

Images can be read from file, from binary data, or from base64-encoded
data.  Images can be written to file or to binary data.

When writing PNG images, TkPNG currently does no line filtering and does
not make any attempts at optimizing color space, meaning no attempts are
made to yield the smallest possible file.  A future revision will probably
fix the filtering to Paeth, as recommended by the PNG specification, for
some improvement in common cases.  Where file size is important, it's best
to use one of the many available tools for optimizing PNG images for size,
rather than resorting to time-consuming brute-force analysis in TkPNG.

Also, writing interlaced images is not currently supported.  If you read an
interlaced image and then write it back out, it will become non-interlaced.

This extension is provided under the Tcl license (see the file
"license.terms" for details), though acknowledgements and/or donations are
of course accepted and appreciated. :)

Finally, special thanks to Willem van Schaik's suite for his suite of PNG
test images, which are available from:

http://www.schaik.com/pngsuite/pngsuite.html

-- Michael Kirkham