I am using PIL 1.1.6, python 2.5 on windows platform.
In my program I am performing point operation (changing the pixel values) and then saving the new image.
When I am loading the new and old image, they are not in the same extent. How to impose the extent of old image to the new image?
RE edited question:
My code is:
img = Image.open("D:/BTC/dada_72.tif")
out = Image.eval(img, lambda x: x * 5)
out.save("D:/BTC/dada_72_Com.tif")
Thank you