Convert User's Avatar/Gravatar to a jpg or png on the Fly
Is there a way to convert a user's gravatar/avatar to jpg on the fly? I have the following in my function:
get_avatar( $uid, 180 );
which returns the user's avatar image if I call it with straight PHP (i.e.: ?php echo get_avatar( $uid, 180 ); ?
but I want to convert the resulting file to a jpeg/png image so I can insert it into an FPDF function
Cheers