在flutter中使用谷歌帐户登录后,提高谷歌帐户图像的质量



当我使用他的谷歌帐户获得登录用户的图像时,我从他的谷歌帐户中获得的图像质量很差。

那么如何提高我从用户谷歌账户获得的图像质量?

我使用谷歌帐户获得用户登录的图像,如下所示:

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");

最新更新