Instantly share code, notes, and snippets.
oliveratgithub/socialnetworkimagesizes.js
Last active Sep 28, 2020
Social media networks image sizes as JSON and JavaScript lists – Contains image sizes for all major social networks and messengers as of 2020 (Facebook, Twitter, Instagram, Tik Tok, Telegram, WhatsApp, and more)
let socialnetworkimagesizes = { | |
'facebook': { | |
'profile': { | |
'Profile picture': { 'w': 180, 'h': 180 } | |
,'Cover photo': { 'w': 820, 'h': 312 } | |
} | |
,'content': { | |
'Timeline image': { 'w': 1200, 'h': 630 } | |
,'Highlighted image': { 'w': 1200, 'h': 717 } | |
,'Link - rectangular': { 'w': 1200, 'h': 628 } | |
,'Link - square': { 'w': 154, 'h': 154 } | |
,'Event cover photo': { 'w': 1920, 'h': 1080 } | |
} | |
} | |
,'instagram': { | |
'profile': { | |
'Profile picture': { 'w': 110, 'h': 110 } | |
} | |
,'content': { | |
'Picture - square': { 'w': 1080, 'h': 1080 } | |
,'Picture - rectangular': { 'w': 1350, 'h': 1080 } | |
,'Picture - portrait': { 'w': 1080, 'h': 1350 } | |
,'Story': { 'w': 1080, 'h': 1920 } | |
} | |
} | |
,'linkedin': { | |
'profile': { | |
'Profile picture': { 'w': 400, 'h': 400, 'filter': 'circular' } | |
,'Profile background': { 'w': 1584, 'h': 396 } | |
,'Company logo': { 'w': 300, 'h': 300 } | |
,'Company cover': { 'w': 1192, 'h': 220 } | |
} | |
,'content': { | |
'Shared link': { 'w': 552, 'h': 289 } | |
,'Single image Tweet': { 'w': 1200, 'h': 627 } | |
,'Company Life Tab – Main image': { 'w': 1128, 'h': 376 } | |
,'Company Life Tab – Photo': { 'w': 264, 'h': 176 } | |
} | |
} | |
,'pinterest': { | |
'profile': { | |
'Profile picture': { 'w': 165, 'h': 165 } | |
} | |
,'content': { | |
'Pin': { 'w': 600, 'h': 236 } | |
,'Board thumbnail - Large': { 'w': 222, 'h': 150 } | |
,'Board thumbnail - Small': { 'w': 55, 'h': 55 } | |
} | |
} | |
,'reddit': { | |
'profile': { | |
'Profile picture': { 'w': 165, 'h': 165 } | |
,'Subreddit icon': { 'w': 250, 'h': 250, 'filter': 'circular' } | |
,'Subreddit banner': { 'w': 2400, 'h': 488 } | |
} | |
,'content': { | |
'Picture - square': { 'w': 606, 'h': 606 } | |
} | |
} | |
,'snapchat': { | |
'profile': { | |
'Profile picture': { 'w': 1080, 'h': 1080 } | |
} | |
,'content': { | |
'Story': { 'w': 1080, 'h': 1920 } | |
,'Geofilter': { 'w': 1080, 'h': 1920 } | |
} | |
} | |
,'telegram': { | |
'profile': { | |
'Profile picture': { 'w': 512, 'h': 512, 'filter': 'circular' } | |
,'Group picture': { 'w': 512, 'h': 512, 'filter': 'circular' } | |
} | |
,'content': { } | |
} | |
,'tiktok': { | |
'profile': { | |
'Profile picture': { 'w': 200, 'h': 200, 'filter': 'circular' } | |
} | |
,'content': { } | |
} | |
,'tumblr': { | |
'profile': { | |
'Avatar': { 'w': 128, 'h': 128 } | |
} | |
,'content': { | |
'Image': { 'w': 1280, 'h': 1920 } | |
} | |
} | |
,'twitter': { | |
'profile': { | |
'Profile picture': { 'w': 400, 'h': 400, 'filter': 'circular' } | |
,'Profile header photo': { 'w': 1500, 'h': 500 } | |
} | |
,'content': { | |
'Shared link': { 'w': 1200, 'h': 628 } | |
,'Single image Tweet': { 'w': 1200, 'h': 675 } | |
,'2-images Tweet': { 'w': 700, 'h': 800 } | |
,'3-images Tweet - first': { 'w': 700, 'h': 800 } | |
,'3-images Tweet - 2nd and 3rd': { 'w': 1200, 'h': 686 } | |
,'4-images Tweet': { 'w': 1200, 'h': 600 } | |
} | |
} | |
,'vimeo': { | |
'profile': { | |
'Profile picture': { 'w': 300, 'h': 300, 'filter': 'circular' } | |
,'Banner': { 'w': 2560, 'h': 1440 } | |
,'On Demand poster': { 'w': 1080, 'h': 1600 } | |
} | |
,'content': { | |
'Video thumbnail': { 'w': 1080, 'h': 1600 } | |
} | |
} | |
,'wechat': { | |
'profile': { | |
'Profile picture': { 'w': 200, 'h': 200 } | |
} | |
,'content': { | |
'Article preview picture': { 'w': 900, 'h': 500 } | |
} | |
} | |
,'weibo': { | |
'profile': { | |
'Profile picture': { 'w': 200, 'h': 200 } | |
,'Profile background': { 'w': 1600, 'h': 900 } | |
,'Cover photo': { 'w': 900, 'h': 300 } | |
,'Banner': { 'w': 560, 'h': 260 } | |
} | |
,'content': { | |
'Image': { 'w': 440, 'h': 440 } | |
} | |
} | |
,'whatsapp': { | |
'profile': { | |
'Profile picture': { 'w': 500, 'h': 500, 'filter': 'circular' } | |
,'Group picture': { 'w': 500, 'h': 500, 'filter': 'circular' } | |
} | |
,'content': { | |
'Picture - square': { 'w': 800, 'h': 800 } | |
,'Story': { 'w': 750, 'h': 1334 } | |
} | |
} | |
,'yammer': { | |
'profile': { | |
'Profile picture': { 'w': 150, 'h': 150 } | |
,'Group icon': { 'w': 150, 'h': 150 } | |
,'Company network logo': { 'w': 160, 'h': 40 } | |
,'Company masthead': { 'w': 1200, 'h': 56 } | |
} | |
,'content': { | |
'Image': { 'w': 1200, 'h': 675 } | |
} | |
} | |
,'youtube': { | |
'profile': { | |
'Profile picture': { 'w': 800, 'h': 800, 'filter': 'circular' } | |
,'Channel cover photo': { 'w': 2560, 'h': 1440 } | |
} | |
,'content': { | |
'Video thumbnail - HD': { 'w': 1280, 'h': 720 } | |
} | |
} | |
}; |
{ | |
"facebook":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":180, | |
"h":180 | |
}, | |
"Cover photo":{ | |
"w":820, | |
"h":312 | |
} | |
}, | |
"content":{ | |
"Timeline image":{ | |
"w":1200, | |
"h":630 | |
}, | |
"Highlighted image":{ | |
"w":1200, | |
"h":717 | |
}, | |
"Shared link - rectangular":{ | |
"w":1200, | |
"h":628 | |
}, | |
"Shared link - square":{ | |
"w":154, | |
"h":154 | |
}, | |
"Event cover photo":{ | |
"w":1920, | |
"h":1080 | |
} | |
} | |
}, | |
"instagram":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":110, | |
"h":110 | |
} | |
}, | |
"content":{ | |
"Picture - square":{ | |
"w":1080, | |
"h":1080 | |
}, | |
"Picture - rectangular":{ | |
"w":1350, | |
"h":1080 | |
}, | |
"Picture - portrait":{ | |
"w":1080, | |
"h":1350 | |
}, | |
"Story":{ | |
"w":1080, | |
"h":1920 | |
} | |
} | |
}, | |
"linkedin":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":400, | |
"h":400, | |
"filter":"circular" | |
}, | |
"Profile background":{ | |
"w":1584, | |
"h":396 | |
}, | |
"Company logo":{ | |
"w":300, | |
"h":300 | |
}, | |
"Company cover":{ | |
"w":1192, | |
"h":220 | |
} | |
}, | |
"content":{ | |
"Shared link":{ | |
"w":552, | |
"h":289 | |
}, | |
"Single image Tweet":{ | |
"w":1200, | |
"h":627 | |
}, | |
"Company Life Tab – Main image":{ | |
"w":1128, | |
"h":376 | |
}, | |
"Company Life Tab – Photo":{ | |
"w":264, | |
"h":176 | |
} | |
} | |
}, | |
"pinterest":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":165, | |
"h":165 | |
} | |
}, | |
"content":{ | |
"Pin":{ | |
"w":600, | |
"h":236 | |
}, | |
"Board thumbnail - Large":{ | |
"w":222, | |
"h":150 | |
}, | |
"Board thumbnail - Small":{ | |
"w":55, | |
"h":55 | |
} | |
} | |
}, | |
"reddit":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":165, | |
"h":165 | |
}, | |
"Subreddit icon":{ | |
"w":250, | |
"h":250, | |
"filter":"circular" | |
}, | |
"Subreddit banner":{ | |
"w":2400, | |
"h":488 | |
} | |
}, | |
"content":{ | |
"Picture - square":{ | |
"w":606, | |
"h":606 | |
} | |
} | |
}, | |
"snapchat":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":1080, | |
"h":1080 | |
} | |
}, | |
"content":{ | |
"Story":{ | |
"w":1080, | |
"h":1920 | |
}, | |
"Geofilter":{ | |
"w":1080, | |
"h":1920 | |
} | |
} | |
}, | |
"telegram":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":512, | |
"h":512, | |
"filter":"circular" | |
}, | |
"Group picture":{ | |
"w":512, | |
"h":512, | |
"filter":"circular" | |
} | |
}, | |
"content":{ | |
} | |
}, | |
"tiktok":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":200, | |
"h":200, | |
"filter":"circular" | |
} | |
}, | |
"content":{ | |
} | |
}, | |
"tumblr":{ | |
"profile":{ | |
"Avatar":{ | |
"w":128, | |
"h":128 | |
} | |
}, | |
"content":{ | |
"Image":{ | |
"w":1280, | |
"h":1920 | |
} | |
} | |
}, | |
"twitter":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":400, | |
"h":400, | |
"filter":"circular" | |
}, | |
"Profile header photo":{ | |
"w":1500, | |
"h":500 | |
} | |
}, | |
"content":{ | |
"Shared link":{ | |
"w":1200, | |
"h":628 | |
}, | |
"Single image Tweet":{ | |
"w":1200, | |
"h":675 | |
}, | |
"2-images Tweet":{ | |
"w":700, | |
"h":800 | |
}, | |
"3-images Tweet - first":{ | |
"w":700, | |
"h":800 | |
}, | |
"3-images Tweet - 2nd and 3rd":{ | |
"w":1200, | |
"h":686 | |
}, | |
"4-images Tweet":{ | |
"w":1200, | |
"h":600 | |
} | |
} | |
}, | |
"vimeo":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":300, | |
"h":300, | |
"filter":"circular" | |
}, | |
"Banner":{ | |
"w":2560, | |
"h":1440 | |
}, | |
"On Demand poster":{ | |
"w":1080, | |
"h":1600 | |
} | |
}, | |
"content":{ | |
"Video thumbnail":{ | |
"w":1080, | |
"h":1600 | |
} | |
} | |
}, | |
"wechat":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":200, | |
"h":200 | |
} | |
}, | |
"content":{ | |
"Article preview picture":{ | |
"w":900, | |
"h":500 | |
} | |
} | |
}, | |
"weibo":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":200, | |
"h":200 | |
}, | |
"Profile background":{ | |
"w":1600, | |
"h":900 | |
}, | |
"Cover photo":{ | |
"w":900, | |
"h":300 | |
}, | |
"Banner":{ | |
"w":560, | |
"h":260 | |
} | |
}, | |
"content":{ | |
"Image":{ | |
"w":440, | |
"h":440 | |
} | |
} | |
}, | |
"whatsapp":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":500, | |
"h":500, | |
"filter":"circular" | |
}, | |
"Group picture":{ | |
"w":500, | |
"h":500, | |
"filter":"circular" | |
} | |
}, | |
"content":{ | |
"Picture - square":{ | |
"w":800, | |
"h":800 | |
}, | |
"Story":{ | |
"w":750, | |
"h":1334 | |
} | |
} | |
}, | |
"yammer":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":150, | |
"h":150 | |
}, | |
"Group icon":{ | |
"w":150, | |
"h":150 | |
}, | |
"Company network logo":{ | |
"w":160, | |
"h":40 | |
}, | |
"Company masthead":{ | |
"w":1200, | |
"h":56 | |
} | |
}, | |
"content":{ | |
"Image":{ | |
"w":1200, | |
"h":675 | |
} | |
} | |
}, | |
"youtube":{ | |
"profile":{ | |
"Profile picture":{ | |
"w":800, | |
"h":800, | |
"filter":"circular" | |
}, | |
"Channel cover photo":{ | |
"w":2560, | |
"h":1440 | |
} | |
}, | |
"content":{ | |
"Video thumbnail - HD":{ | |
"w":1280, | |
"h":720 | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
09/2020 - Initial release