Most active commenters
  • account42(13)
  • fc417fc802(5)
  • (4)
  • bawolff(3)
  • pornel(3)

←back to thread

A new PNG spec

(www.programmax.net)
626 points bluedel | 68 comments | | HN request time: 1.885s | source | bottom
1. albert_e ◴[] No.44373786[source]
So animated GIFs can be replaced by Animated PNGs with alpha blending with transparent backgrounds and lossless compression! Some nostalgia from 2000s websites can be revived and relived :)

Curious if Animated SVGs are also a thing. I remember seeing some Javascript based SVG animations (it was a animated chatbot avatar) - but not sure if there is any standard framework.

replies(10): >>44373806 #>>44373868 #>>44374146 #>>44374225 #>>44374312 #>>44374556 #>>44374786 #>>44376132 #>>44379316 #>>44385628 #
2. andsoitis ◴[] No.44373806[source]
> Curious if Animated SVGs are also a thing.

Yes. Relevant animation elements:

• <set>

• <animate>

• <animateTransform>

• <animateMotion>

See https://www.w3schools.com/graphics/svg_animation.asp

replies(4): >>44373932 #>>44374154 #>>44374163 #>>44374253 #
3. riffraff ◴[] No.44373868[source]
I was under the impression many gifs these days are actually served as soundless videos, as those basically compress better.

Can animated PNG beat av1 or whatever?

replies(6): >>44374218 #>>44374256 #>>44374550 #>>44374739 #>>44375571 #>>44385655 #
4. mattigames ◴[] No.44373932[source]
Overshadowed by CSS animations for almost all use cases.
replies(2): >>44374011 #>>44385632 #
5. lawik ◴[] No.44374011{3}[source]
But animated gradient outlines on text is the only use-case I care about.
replies(1): >>44375962 #
6. ◴[] No.44374146[source]
7. albert_e ◴[] No.44374154[source]
Oh TIL - Thanks!

This could possibly be used to build full fledged games like pong and breakout :)

replies(1): >>44380157 #
8. ◴[] No.44374163[source]
9. josephg ◴[] No.44374218[source]
I doubt it, given png is a lossless compression format. For video thats almost never what you want.
replies(1): >>44374605 #
10. jonhohle ◴[] No.44374225[source]
It seems crazy to think about, but I interviewed with a power company in 2003 that was building a web app with animated SVGs.
11. shakna ◴[] No.44374253[source]
Slightly related, I recently hit on this SVG animation bug in Chrome (that someone else found):

https://shkspr.mobi/blog/2025/06/an-annoying-svg-animation-b...

12. layer8 ◴[] No.44374256[source]
APNG would be for lossless compression, and probably especially for animations without a constant frame rate. Similar to the original GIF format, with APNG you explicitly specify the duration of each individual frame, and you can also explicitly specify looping. This isn’t for video, it’s more for Flash-style animations, animated logos/icons [0], or UI screen recordings.

[0] like for example these old Windows animations: https://www.randomnoun.com/wp/2013/10/27/windows-shell32-ani...

replies(1): >>44374716 #
13. bmacho ◴[] No.44374312[source]
> Curious if Animated SVGs are also a thing.

SVG is just html5, it has full support for CSS, javascript with buttons, web workers, arbitrary fetch requests, and so on (obviously not supported by image viewers or allowed by browsers).

replies(2): >>44375596 #>>44375836 #
14. armada651 ◴[] No.44374550[source]
> Can animated PNG beat av1 or whatever?

Animated PNGs can't beat GIF nevermind video compression algorithms.

replies(2): >>44374811 #>>44374952 #
15. chithanh ◴[] No.44374556[source]
When it comes to converting small video snippets to animated graphics, I think WEBP was much better than APNG from the beginning. Only if you use GIF as intermediate format then APNG was competitive.

Nowadays, AVIF serves that purpose best I think.

replies(1): >>44385765 #
16. DidYaWipe ◴[] No.44374605{3}[source]
For animations with lots of regions of solid color it could do very well.
replies(1): >>44384591 #
17. fc417fc802 ◴[] No.44374716{3}[source]
All valid points, however AV1 also supports lossless compression and is almost certainly going to win the file size competition against APNG every time.

https://trac.ffmpeg.org/wiki/Encode/AV1#Losslessencoding

replies(2): >>44375025 #>>44385663 #
18. fc417fc802 ◴[] No.44374739[source]
> many gifs these days are actually served as soundless videos

That's not really true. Some websites lie to you by putting .gif in the address bar but then serving a file of a different type. File extensions are merely a convention and an address isn't a file name to begin with so the browser doesn't care about this attempt at end user deception one way or the other.

replies(1): >>44375388 #
19. jokoon ◴[] No.44374786[source]
both GIF and PNG use zipping for compressing data, so APNG are not much better than GIF
replies(3): >>44375636 #>>44375716 #>>44376070 #
20. jeroenhd ◴[] No.44374811{3}[source]
Once you add more than 256 different colours in total, GIF explodes in terms of file size. It's great for small, compact images with limited colour information, but it can't compete with APNG when the image becomes more detailed than what you'd find on Geocities.
replies(1): >>44378383 #
21. Aissen ◴[] No.44374952{3}[source]
> Animated PNGs can't beat GIF nevermind video compression algorithms.

Not entirely true, it depends on what's being displayed, see a few simple tests specifically constructed to show how much better APNG can be vs GIF and {,lossy} webp: http://littlesvr.ca/apng/gif_apng_webp.html

Of course I don't think it generalizes all that well…

replies(3): >>44375573 #>>44375646 #>>44380354 #
22. meindnoch ◴[] No.44375025{4}[source]
False, or misleading.

The AV1 spec [1] does not allow RGB color spaces, therefore AV1 cannot preserve RGB animations in a bit-identical fashion.

[1] https://aomediacodec.github.io/av1-spec/av1-spec.pdf

replies(1): >>44378181 #
23. faceplanted ◴[] No.44375388{3}[source]
You said that's not really true and the described exactly how it's true, what did you mean?
replies(1): >>44383933 #
24. bawolff ◴[] No.44375571[source]
Its also because people like to "pause" animations, and that is not really an option with apng & gif.
replies(1): >>44377985 #
25. ◴[] No.44375573{4}[source]
26. bawolff ◴[] No.44375596[source]
Browsers support all that sort of thing, as long as you use an iframe. (Technically there are sone subtle differences between that and html5, but you are right its mostly the same)

If you use an <img> tag, svgs are loaded in "restricted" mode. This disables scripting and external resources. However animation via either SMIL or CSS is still supported.

replies(1): >>44385782 #
27. bawolff ◴[] No.44375636[source]
PNG uses deflate (same as zip) but GIF uses LZW. These are different algorithms. You should expect different compression results i would assume.
replies(1): >>44385791 #
28. bmacho ◴[] No.44375646{4}[source]
I tried these examples on ezgif, and indeed apng manages to be smaller than webp every single time. Weird, I was under the impression that webp was almost always smaller? Is this because GIF images are already special, or apng uses better compression than png?

edit: using the same ezgif webp and apng on a H.264 source, apng is suddenly 10x the size than webp. It seems apng is only better if the source is gif

replies(3): >>44376096 #>>44383964 #>>44385690 #
29. 0points ◴[] No.44375716[source]
Remember when we unwillingly trained the generative AI:s of our time with an endless torrent of factoids?
30. vorgol ◴[] No.44375836[source]
It nearly got raw socket support back in the day: https://news.ycombinator.com/item?id=35381755
31. mattigames ◴[] No.44375962{4}[source]
"Use case" is written without hyphen https://en.m.wikipedia.org/wiki/Use_case
replies(2): >>44377078 #>>44379726 #
32. Calzifer ◴[] No.44376070[source]
(A)PNG supports semi-transparency. In GIF a pixel is either full transparent or full opaque.

Also while true color gifs seem to be possible it is usually limited to 256 colors per image.

For those reasons alone APNG is much better than GIF.

replies(1): >>44385801 #
33. Aissen ◴[] No.44376096{5}[source]
I have no idea! I actually hoped someone would show a much more comprehensive and serious benchmark in response, but that has failed to materialize.
34. theqwxas ◴[] No.44376132[source]
Some years ago I've used the Lottie (Bodymovin?) library. It worked great and had a nice integration: you compose your animation in Adobe After Effects, export it to an svg plus some json, and the lottie JS script would handle the animation for you. Anything else with (vector, web) animations I've tried is missing the tools or the DX for me to adopt. Curious to hear if there are more things like this.

I'm not sure about the tools and DX around animated PNGs. Is that a thing?

35. fkyoureadthedoc ◴[] No.44377078{5}[source]
I have to differentiate myself from LLMs by using words wrong though
36. bigfishrunning ◴[] No.44377985{3}[source]
why not? that's up to the program displaying the animation, not the animation itself -- i'm sure a pausable gif or apng display program is possible
replies(2): >>44378333 #>>44385668 #
37. pornel ◴[] No.44378181{5}[source]
AV1 supports YCoCg, which encodes RGB losslessly.

It is a bit-reversible rotation of the RGB cube. It makes the channels look more like luma and chroma that the codec expects.

replies(1): >>44379922 #
38. pornel ◴[] No.44378333{4}[source]
It's absolutely possible. Browsers even routinely pause playback when images aren't visible on screen.

They just don't have a proper UI and JS APIs exposed, and there's nothing stopping them from adding that.

IMO browsers are just stuck with tech debt, and maintainin a no-longer-relevant distinction between "animations" and "videos". Every supported codec should work wherever GIF/APNG work and vice versa.

It's not even a performance or complexity issue, e.g. browsers support AVIF "animations" as images, even though they're literally fully-featured AV1 videos, only wrapped in a "pretend I'm an image" metadata.

replies(2): >>44379530 #>>44379733 #
39. pornel ◴[] No.44378383{4}[source]
No, APNG explodes in size in that case.

In APNG it's either the same 256 colors for the whole animation, or you have to use 24-bit color. That makes the pixel data 3 times larger, which makes zlib's compression window effectively 3 times smaller, hurting compression.

OTOH GIF can add 256 new colors with each frame, so it can exceed 256 colors without the cost of switching all the way to 16.7 million colors.

40. qingcharles ◴[] No.44379316[source]
Almost nowhere that supports uploading GIFs supports APNG or animated WEBP. The back end support is so low it's close to zero. Which is really frustrating.
replies(1): >>44379647 #
41. joquarky ◴[] No.44379530{5}[source]
I wish browsers still paused all animations when the user hits the Esc key. It's hard to read when there are distracting animations all over most pages.
replies(1): >>44385708 #
42. extraduder_ire ◴[] No.44379647[source]
Do you mean services that reencode gif files to webm/mp4? apng just works everywhere that png works, and will remain animated as long as it's not re-encoded.

You can even have one frame that gets shown if and only if animation is not supported.

replies(1): >>44384999 #
43. WorldMaker ◴[] No.44379726{5}[source]
Hyphenation of multi-word nouns is a process in English that usually happens after some time of usage as separate words. It often happens before eventually merger into a single compound word noun. Such as: "Electronic Mail" to "E Mail" to "e-mail" to "email".

Given how often it is used as a jargon term in software development, I can absolutely see this usage of "use-case" here as a "vote" for the next step in the process. Will we eventually see "usecase" become common? It's possible. I think it might even be a good idea. I'm debating adding my own "votes" for the hyphen moving forward.

44. nextaccountic ◴[] No.44379733{5}[source]
> They just don't have a proper UI and JS APIs exposed, and there's nothing stopping them from adding that.

Browsers should just allow animated gifs and apngs in <video>

replies(1): >>44385700 #
45. meindnoch ◴[] No.44379922{6}[source]
False.

8-bit YCoCg (even when using the reversible YCoCg-R [1] scheme) cannot represent 8-bit RGB losslessly. The chroma channels would need 9 bits of precision to losslessly recover the original 8-bit RGB values.

[1] https://www.microsoft.com/en-us/research/wp-content/uploads/...

46. jerf ◴[] No.44380157{3}[source]
SVG also supports Javascript, which will probably be a lot more useful for games.
replies(1): >>44381167 #
47. armada651 ◴[] No.44380354{4}[source]
You're correct and I was considering adding a footnote that if you use indexed colors like a GIF then PNG can beat GIF due to better compression algorithms. But when most people think of APNG they think of lossless compression rather than lossy compression.
replies(1): >>44385678 #
48. dveditz_ ◴[] No.44381167{4}[source]
It supports JavaScript when used as a document, but when used as an "image" by a browser (IMG tag, CSS features) JavaScript and the loading of external resources are disabled.
49. fc417fc802 ◴[] No.44383933{4}[source]
I parsed the comment as something along the lines of clever hackers somehow stuffing soundless videos into gif containers which is most certainly not what is going on. I was attempting to convey that they have nothing to do with gifs. Gifs are not involved anywhere in the process.

I'm not sure why people disagree so strongly with what I wrote. Worst case scenario is that it's a slightly tangential but closely related rant about deceptive web design practices. Best case scenario is that someone who thought some sort of fancy trick involving gifs was in use learns something new.

50. fc417fc802 ◴[] No.44383964{5}[source]
I would guess that apng only wins when indexed colors can be used. That guess would match what you saw using an h264 file for the source.
51. josephg ◴[] No.44384591{4}[source]
So do most other video formats. I'm not really seeing any advantages, and I see a lot of disadvantages vs h264 and friends.
replies(1): >>44385728 #
52. qingcharles ◴[] No.44384999{3}[source]
Yes, most places only show the first frame. They ignore the animation, sadly. Even while accepting GIFs.
53. account42 ◴[] No.44385628[source]
> So animated GIFs can be replaced by Animated PNGs with alpha blending with transparent backgrounds and lossless compression!

Not progressively though unless browsers add a new mime type for it which they did not bother to do with animated webp.

54. account42 ◴[] No.44385632{3}[source]
*in browsers

Most other SVG renderers don't support much CSS.

55. account42 ◴[] No.44385655[source]
Soundless videos cannot be used in environments that expect an image like embeds in forums and similar.

It's a shame that browser vendors didn't add silent looping video support to the img tag over (imo) baseless concerns.

56. account42 ◴[] No.44385663{4}[source]
> is almost certainly going to win the file size competition against APNG every time

For video content maybe. Pixel-art gifs are not something video codecs do well at without introducing lots of artifacts.

replies(1): >>44389491 #
57. account42 ◴[] No.44385668{4}[source]
Browsers used to support pausing GIFs by pressing the escape key.
58. account42 ◴[] No.44385678{5}[source]
Indexed can be lossless when the source already uses few colors, e.g. because you want to improve the compression of an existing GIF or limit colors for stylistic choice (common in pixel art).
59. account42 ◴[] No.44385690{5}[source]
Almost like video codecs and animated images are different niches that optimize for different content.
60. account42 ◴[] No.44385700{6}[source]
More important would be to allow (silent) videos in <img>.
61. ◴[] No.44385708{6}[source]
62. account42 ◴[] No.44385728{5}[source]
Not without lots of artifacts.
63. account42 ◴[] No.44385765[source]
webm or any other non-gimped video codec would be a much better format for that use case. Unfortunately browsers don't allow those in image contexts so we are stuck with an inferior "state of the art" literally-webm-with-deliberately-worse-compression webp standard.

AVIF is only starting to become widespread so can't be used without fallback if you care about your users. Not sure how it compares to AV1 quality/compression wise but hopefully its not as gimped as webp and there will encoders that aren't as crap as libwebp that almost everyone uses.

replies(1): >>44391874 #
64. account42 ◴[] No.44385782{3}[source]
And non-browser image renders support almost none of those advanced totally-still-SVG features (and I don't blame them) while they often do support animated GIFs.
65. account42 ◴[] No.44385791{3}[source]
ZIP is theoretically a generic container and theoretically supports a number of different compression formats. Stored (no compression) and deflate are the only ones you can count on being supported everywhere though so in practice you're not wrong.
66. account42 ◴[] No.44385801{3}[source]
> Also while true color gifs seem to be possible it is usually limited to 256 colors per image.

No, it's limited to 256 colors per frame and frames can have duration 0 which allows you to combine multiple frames into more than 256 color images.

67. fc417fc802 ◴[] No.44389491{5}[source]
Artifacts? We're talking about lossless compression here. There aren't any artifacts by definition.
68. chithanh ◴[] No.44391874{3}[source]
> Unfortunately browsers don't allow those in image contexts

The fact that we have the <img> element at all is bad. HTML has since the early days a perfectly capable <object> which can even be nested to provide fallback, but browser support was always spotty.

The Acid2 test famously used <object> to shame browser vendors into supporting it at least to some extent.