You take a screenshot with Win+Shift+S. You open the folder you want it in. You press Ctrl+V, and nothing happens.
This is not a bug and it is not something misconfigured. Copying a file and copying a picture put two completely different things on the clipboard, and only one of them is something a folder can paste.
What is actually on the clipboard
When you copy a file in Explorer or Finder, the clipboard gets a reference: this file, at this path. Pasting it somewhere tells the system to copy the bytes it already has, under a name it already knows, in a format it already knows. Everything needed is on disk before you start.
When you copy a picture, the clipboard gets the picture. Raw pixels, held in memory. No name, because nobody gave it one. No folder, because it has never been anywhere. No format on disk, because it has never been written down. A folder is a list of files, and this is not a file, so there is nothing for the folder to do with it.
Which explains the detour so many people end up making: paste it into a chat app, send it to yourself, then download it back. That works because the chat app accepts the paste, writes a real file out of it, and hands it back. The file was created by the app, not recovered from the clipboard.
When you do not need any of this
Worth checking first, because for a lot of people the answer is a setting rather than a tool.
Windows
- Win + Print Screen saves a file immediately — the whole screen, into Pictures › Screenshots. No clipboard involved.
- Win + Shift + S puts the snip on the clipboard and nowhere else. A notification appears; clicking it opens the Snipping Tool, where Ctrl+S saves the file. The notification is the part people miss, because it disappears after a few seconds.
- Recent versions of the Snipping Tool have an Automatically save screenshots setting. Turn it on and every snip is written to a folder as well as copied. If screenshots are your only problem, this ends it permanently.
macOS
- Cmd + Shift + 4 saves a file to the Desktop. So does Cmd + Shift + 3 for the whole screen.
- Adding Control to either sends it to the clipboard instead of the Desktop. Apple documents this directly: press Control in addition to the other keys and the screenshot goes to the clipboard. If you keep ending up with nothing on your Desktop, this is why.
What no operating system will do for you
Here is the real gap, and it is worth being precise about it.
Windows has no built-in way to save an arbitrary copied image as a file. There is no "paste into file" in the right-click menu — you will find articles describing one, but the entry they are describing comes from a separate program that has to be installed. Out of the box, it is not there.
So the shortcuts above only help with screenshots you took yourself. Everything else is genuinely stuck:
- An image you copied from a web page with right-click › Copy image — common when a page blocks "Save image as", or when the picture is a CSS background rather than an image element.
- A picture inside a Word document, a slide or a PDF viewer, where the only export route offered is copy.
- A selection copied out of Figma, Canva or a similar tool, where exporting means dealing with the whole board.
- An image from an app that shows you a picture and offers no save at all.
In every one of those the picture exists, you can see it, and there is no file anywhere. Something has to accept the paste and write one.
Why the file comes out so large
Browsers put images on the clipboard as PNG, always. PNG is lossless — it stores the picture exactly, throwing nothing away — which is the right choice for what people usually screenshot: text, interfaces, charts, anything with hard edges that a lossy format would smear.
It is the wrong choice for a photograph. A screenshot of a photo can come out several megabytes where the same picture as a JPG would be a few hundred kilobytes, because PNG is storing every pixel of noise faithfully.
So if the size matters, save it as JPG or WebP rather than PNG. Two things to know before you do: JPG has no transparency, so anything see-through is filled in — it should be filled with white, and a tool that gets this wrong gives you black. And converting is a lossy step, so it is worth doing once, from the original, rather than repeatedly. If you need to go further, compressing the image afterwards is the separate lever.
Name it while you still know what it is
Every clipboard image arrives called image.png. The first one is fine. By the fourth you have image (3).png in your downloads folder and no idea which screenshot it was.
This is a small thing that costs real time later, and the fix is to name the file at the moment you save it, while you still remember why you took it. Anything that makes you rename files afterwards has moved the work rather than removed it.
The part worth being careful about
Think about what is actually on your clipboard at any given moment. People screenshot bank balances, private messages, medical results, contracts, work in progress under an NDA. The clipboard is one of the least filtered things on a computer — whatever was on screen goes on it.
A page that uploads your paste to a server puts all of that on somebody else's disk, under a retention policy you have not read, to perform a conversion that needs no server at all. Reading a pasted image and writing it back out is something a browser can do entirely on its own.
The tool here does exactly that: you press Ctrl+V, the picture is drawn by your browser, you name it, and your browser writes the file. Nothing is sent anywhere, which is why there is no account, no size limit and no queue. You can also paste straight into the cropper or the converter if the picture needs something doing to it on the way.