Guest User

Untitled

a guest
Jan 18th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import Image
  2.  
  3. img1 = Image.open('image.jpg')
  4. print img1.getpixel((0,0))
  5. img1.save('testimage.jpg')
  6.  
  7. img2 = Image.open('testimage.jpg')
  8. print img2.getpixel((0,0))
Add Comment
Please, Sign In to add comment