Abstract:
Writing image comparison tool with Python PIL.
Python PIL module
Python Imaging Library (PIL) is a useful Python module to process image files. This time I have a situation that
- I have different image file format files
- But the contents must be the same.
For example, I wrote a image generation tool and I want to test it. I compress the reference images, but my program produces images with non-compressed image file format. I can use convert (ImageMagick) tools, though this time, I just would like to try a new tool. You can find my image comparison tool here.
Comments