This file is indexed.

/usr/lib/python2.7/dist-packages/HTMLgen/PngImagePluginH.py is in python-htmlgen 2.2.2-12.1ubuntu1.

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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
#
# The Python Imaging Library.
# $Id: PngImagePluginH.py,v 1.2 1998/05/28 20:14:52 friedric Exp $
#
# PNG support code
#
# See "PNG (Portable Network Graphics) Specification, version 1.0;
# W3C Recommendation", 1996-10-01, Thomas Boutell (ed.).
#
# history:
# 0.1	96-05-06 fl	Created (couldn't resist it)
# 0.2	96-12-14 fl	Upgraded, added read and verify support
#	96-12-15 fl	Separate PNG stream parser
# 	96-12-29 fl	Added write support, added getchunks
# 0.3	96-12-30 fl	Eliminated circular references in decoder
#
# Copyright (c) Secret Labs AB 1997.
# Copyright (c) Fredrik Lundh 1996.
#
# See the README file for information on usage and redistribution.
#

__version__ = "0.3"

import string

import ImageH, ImageFileH, ImagePaletteH


def i16(c):
    return ord(c[1]) + (ord(c[0])<<8)
def i32(c):
    return ord(c[3]) + (ord(c[2])<<8) + (ord(c[1])<<16) + (ord(c[0])<<24)


_MAGIC = "\211PNG\r\n\032\n"


_MODES = {
    # supported bits/color combinations, and corresponding modes/rawmodes
    (1, 0): ("1", "1"),
    (2, 0): ("L", "L;2"),
    (4, 0): ("L", "L;4"),
    (8, 0): ("L", "L"),
    (16,0): ("L", "L;16B"),
    (8, 2): ("RGB", "RGB"),
    (16,2): ("RGB", "RGB;16B"),
    (1, 3): ("P", "P;1"),
    (2, 3): ("P", "P;2"),
    (4, 3): ("P", "P;4"),
    (8, 3): ("P", "P"),
    (8, 4): ("RGBA", "LA"),
    (16,4): ("RGBA", "LA;16B"),
    (8, 6): ("RGBA", "RGBA"),
    (16,6): ("RGBA", "RGBA;16B"),
}


# --------------------------------------------------------------------
# Support classes.  Suitable for PNG and related formats like MNG etc.

class ChunkStream:

    def __init__(self, fp):

	self.fp = fp
	self.queue = []

	if not hasattr(ImageH.core, "crc32"):
	    self.crc = self.crc_skip

    def read(self):
	"Fetch a new chunk. Returns header information."

	if self.queue:
	    cid, pos, len = self.queue[-1]
	    del self.queue[-1]
	    self.fp.seek(pos)
	else:
	    s = self.fp.read(8)
	    cid = s[4:]
	    pos = self.fp.tell()
	    len = i32(s)

	return cid, pos, len

    def close(self):
	del self.queue
	self.fp = None

    def push(self, cid, pos, len):

	self.queue.append((cid, pos, len))

    def call(self, cid, pos, len):
	"Call the appropriate chunk handler"

	if ImageH.DEBUG:
	    print "STREAM", cid, pos, len
	return getattr(self, "chunk_" + cid)(pos, len)

    def crc(self, cid, data):
	"Read and verify checksum"

	crc1 = ImageH.core.crc32(data, ImageH.core.crc32(cid))
	crc2 = i16(self.fp.read(2)), i16(self.fp.read(2))
	if crc1 != crc2:
	    raise SyntaxError, "broken PNG file"\
		"(bad header checksum in %s)" % cid

    def crc_skip(self, cid, data):
	"Read checksum.  Used of the C module is not present"

	self.fp.read(4)

    def verify(self, endchunk = "IEND"):

	# Simple approach; just calculate checksum for all remaining
	# blocks.  Must be called directly after open.

	cids = []

	while 1:
	    cid, pos, len = self.read()
	    if cid == endchunk:
		break
	    self.crc(cid, self.fp.read(len))
	    cids.append(cid)

	return cids


# --------------------------------------------------------------------
# PNG image stream (IHDR/IEND)

class PngStream(ChunkStream):

    def __init__(self, fp):

	ChunkStream.__init__(self, fp)

	# local copies of Image attributes
	self.im_info = {}
	self.im_size = (0,0)
	self.im_mode = None
	self.im_tile = None
	self.im_palette = None

    def chunk_IHDR(self, pos, len):
	
	# image header
	s = self.fp.read(len)
	self.im_size = i32(s), i32(s[4:])
	try:
	    self.im_mode, self.im_rawmode = _MODES[(ord(s[8]), ord(s[9]))]
	except:
	    pass
	if ord(s[12]):
	    self.im_info["interlace"] = 1
	if ord(s[11]):
	    raise SyntaxError, "unknown filter category"
	return s

    def chunk_IDAT(self, pos, len):

	# image data
	self.im_tile = [("zip", (0,0)+self.im_size, pos, self.im_rawmode)]
	self.im_idat = len
	raise EOFError

    def chunk_IEND(self, pos, len):

	# end of PNG image
	raise EOFError

    def chunk_PLTE(self, pos, len):
	
	# palette
	s = self.fp.read(len)
	if self.im_mode == "P":
	    self.im_palette = "RGB", s
	return s

    def chunk_gAMA(self, pos, len):

	# gamma setting
	s = self.fp.read(len)
	self.im_info["gamma"] = i32(s) / 100000.0
	return s

    def chunk_tEXt(self, pos, len):

	# text
	s = self.fp.read(len)
	[k, v] = string.split(s, "\0")
	self.im_info[k] = v
	return s


# --------------------------------------------------------------------
# PNG reader

def _accept(prefix):
    return prefix[:8] == _MAGIC

class PngImageFile(ImageFileH.ImageFile):

    format = "PNG"
    format_description = "Portable network graphics"

    def _open(self):

	if self.fp.read(8) != _MAGIC:
	    raise SyntaxError, "not a PNG file"

	#
	# Parse headers, up until the first IDAT chunk

	self.png = PngStream(self.fp)

	while 1:

	    #
	    # get next chunk

	    cid, pos, len = self.png.read()

	    try:
	        s = self.png.call(cid, pos, len)
	    except EOFError:
		break

	    except AttributeError:
		if ImageH.DEBUG:
		    print cid, pos, len, "(unknown)"
		s = self.fp.read(len)

	    self.png.crc(cid, s)

	#
	# Copy relevant attributes from the PngStream.  An alternative
	# would be to let the PngStream class modify these attributes
	# directly, but that introduces circular references which are
	# difficult to break no matter what happens in the decoders.
	# (believe me, I've tried ;-)

	self.mode = self.png.im_mode
	self.size = self.png.im_size
	self.info = self.png.im_info
	self.tile = self.png.im_tile
	if self.png.im_palette:
	    rawmode, data = self.png.im_palette
	    self.palette = ImagePaletteH.raw(rawmode, data)

	self.__idat = len # used by load_read()


    def verify(self):
	"Verify PNG file"

	# back up to beginning of IDAT block
	self.fp.seek(self.tile[0][2] - 8)

	self.png.verify()
	self.png.close()

	self.fp = None


    def load_read(self, bytes):
	"Read more data from chunks (used by ImageFile.load)"

	while self.__idat == 0:
	    # end of chunk, skip forward to next one

	    self.fp.read(4) # CRC

	    cid, pos, len = self.png.read()

	    if cid not in ["IDAT", "DDAT"]:
		self.png.push(cid, pos, len)
		return ""

	    self.__idat = len # empty chunks are allowed

	# read more data from this chunk
	if bytes <= 0:
	    bytes = self.__idat
	else:
	    bytes = min(bytes, self.__idat)

	self.__idat = self.__idat - bytes

	return self.fp.read(bytes)

#
# --------------------------------------------------------------------
# PNG writer

def o16(i):
    return chr(i>>8&255) + chr(i&255)

def o32(i):
    return chr(i>>24&255) + chr(i>>16&255) + chr(i>>8&255) + chr(i&255)

_OUTMODES = {
    # supported bits/color combinations, and corresponding modes/rawmodes
    "1":   ("1", chr(1)+chr(0)),
    "L;1": ("L;1", chr(1)+chr(0)),
    "L;2": ("L;2", chr(2)+chr(0)),
    "L;4": ("L;4", chr(4)+chr(0)),
    "L":   ("L", chr(8)+chr(0)),
    "P;1": ("P;1", chr(1)+chr(3)),
    "P;2": ("P;2", chr(2)+chr(3)),
    "P;4": ("P;4", chr(4)+chr(3)),
    "P":   ("P", chr(8)+chr(3)),
    "RGB": ("RGB", chr(8)+chr(2)),
    "RGBA":("RGBA", chr(8)+chr(6)),
}

def putchunk(fp, cid, *data):
    "Write a PNG chunk (including CRC field)"

    data = string.join(data, "")

    fp.write(o32(len(data)) + cid)
    fp.write(data)
    hi, lo = ImageH.core.crc32(data, ImageH.core.crc32(cid))
    fp.write(o16(hi) + o16(lo))

class _idat:
    # wrap output from the encoder in IDAT chunks

    def __init__(self, fp, chunk):
	self.fp = fp
	self.chunk = chunk
    def write(self, data):
	self.chunk(self.fp, "IDAT", data)

def _save(im, fp, filename, chunk = putchunk):
    # save an image to disk (called by the save method)

    mode = im.mode

    if mode == "P":

	#
	# attempt to minimize storage requirements for palette images

	if im.encoderinfo.has_key("bits"):

	    # number of bits specified by user
	    n = 1 << im.encoderinfo["bits"]

	else:

	    # check palette contents
	    n = 256 # FIXME

	if n <= 2:
	    bits = 1
	elif n <= 4:
	    bits = 2
	elif n <= 16:
	    bits = 4
	else:
	    bits = 8

	if bits != 8:
	    mode = "%s;%d" % (mode, bits)

    # encoder options
    if im.encoderinfo.has_key("dictionary"):
	dictionary = im.encoderinfo["dictionary"]
    else:
	dictionary = ""

    im.encoderconfig = (im.encoderinfo.has_key("optimize"), dictionary)

    # get the corresponding PNG mode
    try:
	rawmode, mode = _OUTMODES[mode]
    except KeyError:
	raise IOError, "cannot write mode %s as PNG" % mode

    #
    # write minimal PNG file

    fp.write(_MAGIC)

    chunk(fp, "IHDR",
	  o32(im.size[0]), o32(im.size[1]),	#  0: size
	  mode,					#  8: depth/type
	  chr(0),				# 10: compression
	  chr(0),				# 11: filter category
	  chr(0))				# 12: interlace flag

    if im.mode == "P":
	chunk(fp, "PLTE", im.im.getpalette("RGB"))

    if 0:
	# FIXME: to be supported some day
	chunk(fp, "gAMA", o32(int(gamma * 100000.0)))

    ImageFileH._save(im, _idat(fp, chunk), [("zip", (0,0)+im.size, 0, rawmode)])

    chunk(fp, "IEND", "")

    try:
        fp.flush()
    except: pass


# --------------------------------------------------------------------
# PNG chunk converter

def getchunks(im, **params):
    """Return a list of PNG chunks representing this image."""

    class collector:
        data = []
        def write(self, data):
	    pass
	def append(self, chunk):
	    self.data.append(chunk)

    def append(fp, cid, *data):
	data = string.join(data, "")
	hi, lo = ImageH.core.crc32(data, ImageH.core.crc32(cid))
	crc = o16(hi) + o16(lo)
	fp.append((cid, data, crc))

    fp = collector()

    try:
	im.encoderinfo = params
	_save(im, fp, None, append)
    finally:
	del im.encoderinfo

    return fp.data


# --------------------------------------------------------------------
# Registry

ImageH.register_open("PNG", PngImageFile, _accept)
ImageH.register_save("PNG", _save)

ImageH.register_extension("PNG", ".png")

ImageH.register_mime("PNG", "image/png")