php - thumbnails are more bigger respect to the original image -


i have worpdress website images important part of it, have found solution prevent compression of images wordpress when upload images (wordpress make compression of 90/100 when upload image through image uploader), because want better image quality.

this filter used:

add_filter( 'jpeg_quality', create_function( '', 'return 100;' ) ); 

so it's work, see problem, when upload image example size of 150 kb, default thumbnails of wordpress (medium,large) more bigger (300kb) original image

why ?


Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

python - Error: Unresolved reference 'selenium' What is the reason? -

php - Need to store a large amount of data in session with CI 3 but on storing large data in session it is itself destorying automatically -