본문 바로가기

English exercise

[Discord] How to download large profile image in Discord

* This article is availble at 11-12-2019. But it can be blocked by discord.

 

Sometimes in discord, Users profile image is too small to recognize.

 

In this case, you can download profile image using built-in Developer mode in web browser. 

I'll use Chrome to download a music bot's enlarged profile image

 

1. Enter discord web service.

Bot's profile

 

 

2. On the profile dialog, press "ctrl + shift + C" to both enter the developer console and enable insepection.

Click on the profile image!

 

 

 

3. Move your mouse cursor on the profile image and click it. It leads the HTML element to the profile image.

Click area <div> tag

 

 

4. Press ▶ button until profile image url appears

 

 

 

5. after 2 ~ 3 times clicking, you can find a url link like below.

 

https://cdn.discordapp.com/avatars/ABCD/303030303303030303030.png?size=128" alt=" " class="avatar-ABCD" aria-hidden="true">

 

* the url starts with https://cdn.discordapp.com/avatars/

 

 

6. size paramter (?size=128 above) means N*N size of image. for example, if size paramter is 128, discord's cdn server provides 128 X 128 image. You can try following sizes. (128, 256, 512, 1024, 2048,, etc) It depends on the original image size, the server always shows its maximum size image even if you request very large size.

 

* Note: size value should be 128 * N, or you encounter server error! (123, 333, etc)

 

 

7. Copy the url and paste it to web browser, you can see the image.