Not a huge deal, but for the sake of understanding what's going on to avoid future problems...
I'd like to know why the file size of a jpg is going up after the exif data is removed. I thought it was supposed to go down?
from PIL import Image
image = Image.open(fname)
name, ext = get_fname_ext(fname)
out_name = name + '_cleaned' + ext
out_abs = output_dir + "\\" + out_name
image.save(out_abs)
Filesize before: 192.65 KB
Filesize after: 202.46 KB
Difference: +9.82 KB