YouTube Banner Downloader

The "banner" (YouTube also calls it channel art or channel header) is the wide image at the top of every channel page. The version YouTube shows you in the browser is cropped for whatever device you're on. The original file the creator uploaded is up to 2560×1440 pixels. Here's how to get that full version.

No automatic extraction tool exists for this — at least, not without a YouTube Data API key on a backend somewhere. Banner images are served from yt3.googleusercontent.com with CORS headers that block browser-only fetching. The good news: the manual method below takes about 15 seconds and gives you the full uncropped source.

The 15-second method (desktop)

  1. Open the channel page on YouTube.
  2. Right-click on the banner image at the top of the page (the wide rectangle behind the channel name and avatar).
  3. Choose "Open image in new tab".
  4. Look at the URL of the new tab. It'll end with something like =w1060-fcrop64=1,... or =w2560-fcrop64=.... That long suffix is YouTube's cropping instruction.
  5. Delete everything from the "=" sign onward, then press Enter. The image reloads as the original uncropped source — usually 2560×1440, sometimes 2048×1152.
  6. Right-click → Save image as.

Why the cropping suffix matters

YouTube banners have to display correctly across very different screen sizes — a phone shows the central 1235×338 region, a tablet shows roughly 1855×423, a desktop browser shows 2560×423, and a smart TV uses the full 2560×1440. YouTube handles this by storing one source image at the largest size and serving cropped versions with the fcrop64 URL parameter telling the CDN which region to send.

When you strip the fcrop64 parameter, the CDN serves the original source image with no cropping. That's almost always what you want — you can crop it yourself in any image editor if you need a specific region.

The YouTube banner "safe zone"

When you download a banner and look at it for the first time, you'll notice it looks weirdly empty in the middle and busy on the edges. That's because most creators design their banner for the safe zone — the central 1235×338 region that's visible on every device including phones. Anything outside that area is decorative and only shows up on tablet and bigger.

The full crop hierarchy:

  • 2560×1440 — full source / TV display
  • 2560×423 — desktop browser
  • 1855×423 — tablet
  • 1235×338 — phone safe zone

On mobile

On iOS or Android, open the channel in your browser (not the YouTube app — the app doesn't expose the banner as a tappable image).

  1. Switch to desktop mode if the banner doesn't show up properly — on iOS Safari, tap the "aA" icon in the URL bar and choose "Request Desktop Website". On Android Chrome, tap the menu and check "Desktop site".
  2. Long-press the banner, choose "Open image in new tab".
  3. Edit the URL to remove the crop suffix (as in the desktop steps above).
  4. Long-press the reloaded image → Save image / Download image.

If the channel doesn't have a banner

Smaller channels often haven't set a custom banner. In that case YouTube shows a flat-colour or default gradient header that you don't really need to download — there's no source image to extract, just a CSS background. If right-clicking the header area doesn't surface an image option in the context menu, that's the reason.

Related tools