GIF to PNG
Save a GIF as a PNG. The decoder hands back one image rather than a sequence, so an animation arrives as its first frame and stops there.
Runs on your device. The file is never uploaded.
GIF to PNG returns exactly one image from the sequence: frame zero, drawn as the file says to draw it first. The PNG stores that exactly, transparent index and all, which is why a clear GIF background survives. Everything after the first frame stays behind in the file you dropped.
Questions
Does GIF to PNG upload my files?
No. GIF to PNG runs inside this browser tab, in a Web Worker on your own machine, and no part of your file is sent anywhere. There is no upload step to skip — the tool cannot reach a server even if it wanted to, and the counter on the homepage shows the number of outbound requests the page has made: zero.
How many files can I use at once?
Drop as many as you like. Each file is handled separately and comes back as its own result, so twenty files in means twenty results out.
What can I change about the result?
Nothing to configure — it does one thing, and the result is the same every time you run it on the same input.
Is GIF to PNG free, and do I need an account?
It is free and there is no account, no sign-in and no quota. Nothing is metered because nothing runs on a server — the only limit is your own device's memory, which is what decides how large a file it can handle.
Does it work offline?
Yes. The whole site is stored in your browser after the first visit, so GIF to PNG keeps working with the network off. Tools that use a machine-learning model download that model once, on first use, and run offline afterwards.
Can I use GIF to PNG outside the browser?
Yes. Every tool here is the same code on three surfaces: this page, a CLI command, and an MCP tool an AI agent can call. `gif-to-png` is the name it goes by on all three.