diff options
author | Guido van Rossum <guido@python.org> | 1998-08-07 15:28:23 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-08-07 15:28:23 (GMT) |
commit | 2c2f731daf67b998c22d5d3eef73f1302edebf9c (patch) | |
tree | e41a05085eba092b8f5e9ef8f51cff0586bcfd85 /Lib/plat-irix5 | |
parent | 1015be3812fad65e90e1f077d7f34eb88a607bc9 (diff) | |
download | cpython-2c2f731daf67b998c22d5d3eef73f1302edebf9c.zip cpython-2c2f731daf67b998c22d5d3eef73f1302edebf9c.tar.gz cpython-2c2f731daf67b998c22d5d3eef73f1302edebf9c.tar.bz2 |
[Sjoerd Mullender]
Don't use CL module since all constants are now in cl.
Diffstat (limited to 'Lib/plat-irix5')
-rwxr-xr-x | Lib/plat-irix5/jpeg.py | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/Lib/plat-irix5/jpeg.py b/Lib/plat-irix5/jpeg.py index 85d6d83..2e7ced5 100755 --- a/Lib/plat-irix5/jpeg.py +++ b/Lib/plat-irix5/jpeg.py @@ -14,22 +14,22 @@ decomp = None def compress(imgdata, width, height, bytesperpixel): global comp - import cl, CL - if comp is None: comp = cl.OpenCompressor(CL.JPEG) + import cl + if comp is None: comp = cl.OpenCompressor(cl.JPEG) if bytesperpixel == 1: - format = CL.GRAYSCALE + format = cl.GRAYSCALE elif bytesperpixel == 4: - format = CL.RGBX + format = cl.RGBX if options['forcegray']: - iformat = CL.GRAYSCALE + iformat = cl.GRAYSCALE else: - iformat = CL.YUV + iformat = cl.YUV # XXX How to support 'optimize'? - params = [CL.IMAGE_WIDTH, width, CL.IMAGE_HEIGHT, height, \ - CL.ORIGINAL_FORMAT, format, \ - CL.ORIENTATION, CL.BOTTOM_UP, \ - CL.QUALITY_FACTOR, options['quality'], \ - CL.INTERNAL_FORMAT, iformat, \ + params = [cl.IMAGE_WIDTH, width, cl.IMAGE_HEIGHT, height, \ + cl.ORIGINAL_FORMAT, format, \ + cl.ORIENTATION, cl.BOTTOM_UP, \ + cl.QUALITY_FACTOR, options['quality'], \ + cl.INTERNAL_FORMAT, iformat, \ ] comp.SetParams(params) jpegdata = comp.Compress(1, imgdata) @@ -37,22 +37,22 @@ def compress(imgdata, width, height, bytesperpixel): def decompress(jpegdata): global decomp - import cl, CL - if decomp is None: decomp = cl.OpenDecompressor(CL.JPEG) + import cl + if decomp is None: decomp = cl.OpenDecompressor(cl.JPEG) headersize = decomp.ReadHeader(jpegdata) - params = [CL.IMAGE_WIDTH, 0, CL.IMAGE_HEIGHT, 0, CL.INTERNAL_FORMAT, 0] + params = [cl.IMAGE_WIDTH, 0, cl.IMAGE_HEIGHT, 0, cl.INTERNAL_FORMAT, 0] decomp.GetParams(params) width, height, format = params[1], params[3], params[5] - if format == CL.GRAYSCALE or options['forcegray']: - format = CL.GRAYSCALE + if format == cl.GRAYSCALE or options['forcegray']: + format = cl.GRAYSCALE bytesperpixel = 1 else: - format = CL.RGBX + format = cl.RGBX bytesperpixel = 4 # XXX How to support 'smooth'? - params = [CL.ORIGINAL_FORMAT, format, \ - CL.ORIENTATION, CL.BOTTOM_UP, \ - CL.FRAME_BUFFER_SIZE, width*height*bytesperpixel] + params = [cl.ORIGINAL_FORMAT, format, \ + cl.ORIENTATION, cl.BOTTOM_UP, \ + cl.FRAME_BUFFER_SIZE, width*height*bytesperpixel] decomp.SetParams(params) imgdata = decomp.Decompress(1, jpegdata) return imgdata, width, height, bytesperpixel |