rajeevs1992

pil

Feb 4th, 2012
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. import Image
  2. im=Image.open("IMG066.jpg")
  3. pic=im.convert('RGBA')
  4. pic=im.load()
  5. pic[10,10]=(255,255,255,255)
  6. im.save("IMG066.jpg","JPEG")
Advertisement
Add Comment
Please, Sign In to add comment