In BP 1.6.2+, it is set to 100 by default.
Thank you both… I’m using Buddypress Version 1.6.3 but the avatars on forum page appear with low quality…
I tried your solution modemlooper but nothing changed :S
I didn’t know quality was bumped. :/
Are your forum avatars enlarged via css, are you looking at the from a high resolution screen like an iphone?
No, I haven’t done any modification on the size via css & I’m looking at it from a normal resolution screen (from my laptop 🙂 )…
It’s not like the avatars here, same size but lower quality.
Thanks
Perhaps the image is too small and it just scales… Try to upload the big image (in px) and crop it.
As I see using “Firebug”, the taken users’ avatars are thumbnails with default size 50×50 and enlarged to 80×80, that’s why its quality is low but the question is how to use the original avatar instead of the thumbnail? What file should be modified for this? I couldn’t find it :S
jpeg_quality is deprecated since WP 3.5
use wp_editor_set_quality or WP_Image_Editor::set_quality() instead
source: codex.wordpress.org/Plugin_API/Filter_Reference
Thanks… I tried it actually but didn’t work 🙁
you need to bump the bp avatar thumbnail to the display size. 80×80
define ( ‘BP_AVATAR_THUMB_WIDTH’, 80 );
define ( ‘BP_AVATAR_THUMB_HEIGHT’, 80 );
Hey, I use this code below will get good quality thumbs. But I edit the core file topic.php to make this works. define avatar size not working on mine.
`bp_the_topic_post_poster_avatar( ‘type=full&width=80&height=80’ ); `