当我使用他的谷歌帐户获取登录用户的图像时,我从他的谷歌帐户获取的图像质量很差。
那么如何提高我从用户谷歌帐户获得的图像的质量?
我使用谷歌帐户获取用户登录的图像,如下所示:
final GoogleSignInAuthentication googleSignInAuthentication =
await googleSignInAccount.authentication;
final token = googleSignInAuthentication;
// her i use this statement to take the google account image :
userImageUrl = googleSignInAccount.photoUrl
尝试以下代码
userImageUrl = googleSignInAccount.photoUrl.replaceAll("s96-c", "s192-c");