I use python to save jpegs in a smaller quality
im = Image.open(file)
im.save(cached_file, quality=80, optimize=True, progressive=True)
In some images however, the file size of the new image is larger than the original’s. How can this happen?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Is it possible that the original image was saved with quality < 80? So, you are basically using more space to save artifacts of the reconstruction?