test_imageop.py 4.83 KB
Newer Older
1
#! /usr/bin/env python
2

3 4 5 6 7
"""Test script for the imageop module.  This has the side
   effect of partially testing the imgfile module as well.
   Roger E. Masse
"""

8
from test.test_support import verbose, unlink
9

10
import imageop, uu, os, imgfile
11

12 13
import warnings

14
def main():
15

16
    # Create binary test files
17
    uu.decode(get_qualified_path('testrgb'+os.extsep+'uue'), 'test'+os.extsep+'rgb')
18

19
    image, width, height = getimage('test'+os.extsep+'rgb')
20

21 22 23
    # Return the selected part of image, which should by width by height
    # in size and consist of pixels of psize bytes.
    if verbose:
24
        print 'crop'
25 26 27 28 29
    newimage = imageop.crop (image, 4, width, height, 0, 0, 1, 1)

    # Return image scaled to size newwidth by newheight. No interpolation
    # is done, scaling is done by simple-minded pixel duplication or removal.
    # Therefore, computer-generated images or dithered images will
30
    # not look nice after scaling.
31
    if verbose:
32
        print 'scale'
33 34 35 36 37
    scaleimage = imageop.scale(image, 4, width, height, 1, 1)

    # Run a vertical low-pass filter over an image. It does so by computing
    # each destination pixel as the average of two vertically-aligned source
    # pixels. The main use of this routine is to forestall excessive flicker
38
    # if the image two vertically-aligned source pixels,  hence the name.
39
    if verbose:
40
        print 'tovideo'
41
    videoimage = imageop.tovideo (image, 4, width, height)
42

43
    # Convert an rgb image to an 8 bit rgb
44
    if verbose:
45
        print 'rgb2rgb8'
46 47 48 49
    greyimage = imageop.rgb2rgb8(image, width, height)

    # Convert an 8 bit rgb image to a 24 bit rgb image
    if verbose:
50
        print 'rgb82rgb'
51
    image = imageop.rgb82rgb(greyimage, width, height)
52

53 54
    # Convert an rgb image to an 8 bit greyscale image
    if verbose:
55
        print 'rgb2grey'
56 57 58 59
    greyimage = imageop.rgb2grey(image, width, height)

    # Convert an 8 bit greyscale image to a 24 bit rgb image
    if verbose:
60
        print 'grey2rgb'
61
    image = imageop.grey2rgb(greyimage, width, height)
62

63
    # Convert a 8-bit deep greyscale image to a 1-bit deep image by
64
    # thresholding all the pixels. The resulting image is tightly packed
65
    # and is probably only useful as an argument to mono2grey.
66
    if verbose:
67
        print 'grey2mono'
68
    monoimage = imageop.grey2mono (greyimage, width, height, 0)
69

70
    # monoimage, width, height = getimage('monotest.rgb')
71 72 73 74 75 76
    # Convert a 1-bit monochrome image to an 8 bit greyscale or color image.
    # All pixels that are zero-valued on input get value p0 on output and
    # all one-value input pixels get value p1 on output. To convert a
    # monochrome  black-and-white image to greyscale pass the values 0 and
    # 255 respectively.
    if verbose:
77
        print 'mono2grey'
78 79 80 81 82
    greyimage = imageop.mono2grey (monoimage, width, height, 0, 255)

    # Convert an 8-bit greyscale image to a 1-bit monochrome image using a
    # (simple-minded) dithering algorithm.
    if verbose:
83
        print 'dither2mono'
84 85 86
    monoimage = imageop.dither2mono (greyimage, width, height)

    # Convert an 8-bit greyscale image to a 4-bit greyscale image without
87
    # dithering.
88
    if verbose:
89
        print 'grey2grey4'
90
    grey4image = imageop.grey2grey4 (greyimage, width, height)
91 92

    # Convert an 8-bit greyscale image to a 2-bit greyscale image without
93
    # dithering.
94
    if verbose:
95
        print 'grey2grey2'
96
    grey2image = imageop.grey2grey2 (greyimage, width, height)
97 98 99

    # Convert an 8-bit greyscale image to a 2-bit greyscale image with
    # dithering. As for dither2mono, the dithering algorithm is currently
100
    # very simple.
101
    if verbose:
102
        print 'dither2grey2'
103
    grey2image = imageop.dither2grey2 (greyimage, width, height)
104

105
    # Convert a 4-bit greyscale image to an 8-bit greyscale image.
106
    if verbose:
107
        print 'grey42grey'
108
    greyimage = imageop.grey42grey (grey4image, width, height)
109

110
    # Convert a 2-bit greyscale image to an 8-bit greyscale image.
111
    if verbose:
112
        print 'grey22grey'
113 114 115
    image = imageop.grey22grey (grey2image, width, height)

    # Cleanup
116
    unlink('test'+os.extsep+'rgb')
117 118 119 120 121 122

def getimage(name):
    """return a tuple consisting of
       image (in 'imgfile' format) width and height
    """
    try:
123
        sizes = imgfile.getsizes(name)
124
    except imgfile.error:
125 126
        name = get_qualified_path(name)
        sizes = imgfile.getsizes(name)
127
    if verbose:
128
        print 'imgfile opening test image: %s, sizes: %s' % (name, str(sizes))
129 130 131 132

    image = imgfile.read(name)
    return (image, sizes[0], sizes[1])

133
def get_qualified_path(name):
134
    """ return a more qualified path to name"""
135 136
    import sys
    import os
137 138
    path = sys.path
    try:
139
        path = [os.path.dirname(__file__)] + path
140
    except NameError:
141
        pass
142
    for dir in path:
143 144 145
        fullname = os.path.join(dir, name)
        if os.path.exists(fullname):
            return fullname
146 147
    return name

148
main()