How to Get Avatar profile to UI Image? (Steamworks)

I Have a question.
To get Steam profile picture for my UI Image, how should I proceed with my C # script using Steamworks?

1. You need a steam app ID

Not necessary in this case, but in order to make full use of SteamSDK, you need one.

2. You need a wrapper

Steamworks doesn’t provide any c# wrapper for years, so you need a 3rd party wrapper. This is the best, check it out Steamworks.NET - Installation

3. Implement

Check this page Steamworks.NET-Test/Assets/Scripts/SteamFriendsTest.cs at master · rlabrecque/Steamworks.NET-Test · GitHub

You will see how things like “m_LargeAvatar” have been implemented

as @zhuchun mentioned, you need to have 184px avatars for steam.

,First of all, you need steam app id. As zhuchun said above, then you need a 3rd party wrapper.

Finally, you should download steam images with 184px in size.

Check this page https://github.com/rlabrecque/Steamworks.NET-Test/blob/master/Assets/Scripts/SteamFriendsTest.cs

You will see how things like “m_LargeAvatar” have been implemented