I´m working on a project with PIL in python. Simply by opening and saving an image makes the output image bigger (in Bytes) than the original, maintaining the same resolution, and i don´t know why...
from PIL import Image
img = Image.open("photo.png")
img.save("photo2.png", "PNG")
Does any one have any idea why this happens? i need them to be exactly the same.