I am trying to change the pixel value of a tif file (containing projection information) but after the pixel value is changed it is losing projection information.
I am using the Python imaging library for this and the code is like this
import Image
im = Image.open("some tif file")
im.putpixel((2,3),0)
So please help me in solving this ..