Reputation: 165
I'm new to PIL library and have some problem.
base = Image.open('sam.bmp')
base.save(open('base.bmp', 'w'), 'BMP')
when I execute that block of code, saved image is distorted in some strange way.
As you can see, I'm not doing any transformations with the image - only load and save. Do you have any clue, why is it working that way?
Upvotes: 6
Views: 6567