APNG
{{short description|File format}}
{{other uses}}
{{Infobox file format
| name = Animated PNG
| icon =
| screenshot = file:Animated PNG example bouncing beach ball.png
| caption = An animated PNG, or APNG, of a bouncing ball (displays as static image in some web browsers)
| extension = {{code|.png}}, {{code|.apng}}
| mime = {{code|image/png}}, {{code|image/apng}}, {{code|image/vnd.mozilla.apng}}
| owner = Mozilla Foundation (adopted by W3C)
| creatorcode =
| genre = animated lossless bitmap image
| containerfor =
| containedby =
| released = {{start date and age|2004|08|27}}{{cite web |title=Add APNG support for Mozilla |url=https://bugzilla.mozilla.org/show_bug.cgi?id=257197 |website=Bugzilla |publisher=Mozilla Foundation |access-date=23 April 2024 |date=27 August 2004}}
| extendedfrom = PNG
| extendedto =
| open = yes
| url =
}}
Animated Portable Network Graphics (APNG) is a file format which extends the Portable Network Graphics (PNG) specification to permit animated images that work similarly to animated GIF files, while supporting 24 or 48-bit images and full alpha transparency not available for GIFs. It also retains backward compatibility with non-animated PNG files.
The first frame of an APNG file is stored as a normal PNG stream, so most standard PNG decoders are able to display the first frame of an APNG file. The frame speed data and extra animation frames are stored in extra chunks (as provided for by the original PNG specification). APNG competed with Multiple-image Network Graphics (MNG), a comprehensive format for bitmapped animations which was created by the same team as PNG and is obsolete. APNG's advantage was the smaller library size and compatibility with older PNG implementations.
History and development
The APNG specification was created in 2004 by Stuart Parmenter and Vladimir Vukićević of the Mozilla Corporation to allow for storing the animations needed for interfaces such as throbbers.{{cite web |author1=Stuart Parmenter |author2=Vladimir Vukicevic |title=APNG 0.4 [DRAFT] |url=http://www.vlad1.com/~vladimir/projects/apng/AnimatedPNG.html |publisher=Vladimir Vukicevic |access-date=23 April 2024 |archive-url=https://web.archive.org/web/20041119231831/http://www.vlad1.com/~vladimir/projects/apng/AnimatedPNG.html |archive-date=19 November 2004 |date=2 September 2004}} In May 2003, Mozilla had scrapped support for MNG animations, which provides a superset of APNG functionality, citing concerns about the large file size required for the expansive MNG decoder library (300 KB);{{Cite web |last=martin |date=1999-11-11 |title=Bug 18574 - (mng) restore support for MNG animation format and JNG image format |url=https://bugzilla.mozilla.org/show_bug.cgi?id=18574#c72 |access-date=2010-03-30 |publisher=Mozilla}} the APNG decoder, built on the back of the PNG decoder, was a much smaller component.
Among users and maintainers of the PNG and MNG formats, APNG had a lukewarm reception. In particular, PNG was conceived to be a single-image format.{{Cite web |title=PNG (Portable Network Graphics) Specification, Version 1.1#8.4. Multiple-image extension |url=http://www.libpng.org/pub/png/spec/1.1/PNG-Misc.html#Multiple-image-extension |access-date=2010-03-30 |publisher=libpng}} APNG hides the subsequent frames in PNG ancillary chunks in such a way that APNG-unaware applications would ignore them, but there are otherwise no changes to the format to allow software to distinguish between animated and non-animated images. Some of the main concerns arising from this were the inability of applications to negotiate for PNG and APNG, or distinguish between PNG and APNG once received, or for legacy software to even inform users that there are additional frames. Glenn Randers-Pehrson spearheaded efforts to reconcile the PNG purists' position with that of APNG proponents by recommending changes to APNG's format and proposing the use of a unique MIME type (e.g., video/png), but the APNG proponents only added the different MIME type (image/apng){{Cite web |title=APNG Specification, Version 1.0#MIME type |url=https://wiki.mozilla.org/APNG_Specification#MIME_type |access-date=2017-12-10 |publisher=Mozilla}} while insisting on the use of the .png extension instead of .apng, leading to the format not being approved by the PNG Development Group.{{Cite web |title=ImageMagick can't detect animated PNG |url=https://github.com/ImageMagick/ImageMagick/issues/24#issuecomment-136362187 |access-date=2017-12-10 |website=GitHub}}
The PNG Development Group rejected APNG as an official extension on April 20, 2007,{{Cite web |date=2007-04-20 |title=VOTE FAILED: APNG 20070405a |url=https://sourceforge.net/mailarchive/message.php?msg_id=131482 |publisher=SourceForge mailing list}} and there have been several subsequent proposals for a simple animated graphics format based on PNG using several different approaches.{{Cite web |title=Discussion for a simple "animated" PNG format |url=http://gjuyn.xs4all.nl/pnganim.html |archive-url=https://web.archive.org/web/20090226103407/http://gjuyn.xs4all.nl/pnganim.html |archive-date=2009-02-26 |access-date=2011-07-12}} However, since September 14, 2021, the PNG Working Group has been chartered by the World Wide Web Consortium (W3C) to maintain and develop for the PNG specification, and the first public working draft of PNG Specification (Third Edition) was published on October 25, 2022, adding APNG extensions to the core PNG specification.{{Cite web |date=2023-05-24 |title=PNG Third Edition, Explained |url=https://github.com/w3c/PNG-spec/blob/d5b059ad7f81e789b7689f1c0479db8d1cb41fb8/Third_Edition_Explainer.md#apng |website=W3C GitHub}} The Candidate Recommendation was published on September 21, 2023.{{Cite web |date=2023-09-21 |title=PNG Specification (Third Edition), APNG: frame-based animation |url=https://www.w3.org/TR/png/#apng-frame-based-animation |website=w3.org}}
File format
The APNG specification follows the PNG File format introducing three new ancillary chunks:{{Cite web |title=APNG Specification - MozillaWiki |url=https://wiki.mozilla.org/APNG_Specification}}
- The animation control chunk (acTL) precedes the IDAT(s) of the default image and is a kind of "marker" that this is an animated PNG file. It also contains the number of frames and the number of times to loop the animation (0 meaning infinite).
- The frame control chunk (fcTL) precedes each frame and contains its metadata : dimensions; position (relative to the default image); duration; if once over it is cleared to black, replaced by the previous frame or drawn over by the next frame; and if its transparency applies.
- The frame data chunk (fdAT) storing frame's content. It starts with a sequence number, then has the same structure as the default image's IDAT chunk(s).
Sequence numbers apply to both frame control and frame data chunks, which together follow a common sequence, thus enabling the order and timing of frames to be recovered should an APNG-unaware PNG editor re-order them as allowed by PNG chunk ordering rules.[http://www.libpng.org/pub/png/spec/1.2/PNG-Ordering.html Chunk Ordering Rules] (PNG 1.2 spec)
Frames utilize the same bit depth, color type, compression method, filter method, interlace method, and palette (if any) as the default image.
An application reading a PNG file is meant to ignore any chunks which it does not understand,{{Cite web |title=Portable Network Graphics (PNG) Specification (Second Edition) |url=https://www.w3.org/TR/PNG/}} making APNG backwards compatible. Applications without support for the APNG extension show only the first frame, disregarding additional animation frames.
= Compression and optimization =
A number of optimization techniques make APNG files as small as possible: Inter-frame optimization {{Cite web |title=Inter-frame Optimization in APNG |url=http://littlesvr.ca/apng/inter-frame.html |url-status=live |archive-url=https://web.archive.org/web/20140426100136/http://littlesvr.ca:80/apng/inter-frame.html |archive-date=2014-04-26 |access-date=2021-10-21 |website=littlesvr.ca}} utilizing alpha-blend and alpha dispose operations, smaller than the full-size subframes, dirty transparency, color type and color palette optimizations, and various compression options: zlib, 7-Zip, Zopfli.{{Cite web |title=APNG Assembler |url=https://apngasm.sourceforge.net/ |access-date=2021-10-21 |website=apngasm.sourceforge.net}}
=Derived formats=
Animated stickers for Signal are APNG with some restrictions (the size of the file is limited to 300kb, the length of the animation is limited to 3 seconds and, visibly (this last point is unclear), the resolution must be 512x512px).{{Which|date=January 2024}}{{Cite web |title=Stickers |url=https://support.signal.org/hc/en-us/articles/360031836512-Stickers#sticker_reqs |access-date=28 December 2021 |website=Signal Support |publisher=Signal |language=en}}
Support
{{See also|Comparison of web browsers#Image format support}}
File:APNG Assembler Logo.svg to create APNG images]]
Mozilla Firefox added support for APNG in version 3 trunk builds on March 23, 2007.{{Cite web |date=2007-03-23 |title=Gran Paradiso Alpha 3 release notes |url=https://www.mozilla.org/projects/firefox/3.0a3/releasenotes/ |url-status=dead |archive-url=https://web.archive.org/web/20091226221450/http://www.mozilla.org/projects/firefox/3.0a3/releasenotes/ |archive-date=December 26, 2009 |access-date=2010-03-30 |publisher=Mozilla}} However, because libpng is the PNG Group's reference implementation of the official specification, APNG support can never be supported in the main libpng distribution so long as it remains unratified by the Group. Iceweasel 3 supports APNG by using Mozilla's unofficial variant of libpng.{{Cite web |date=2011-08-26 |title=Debian Bug #486827 Iceweasel cannot render APNG image |url=https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=486827#43 |access-date=2011-09-18 |publisher=Debian}}
In 2008 WorldDMB adopted APNG as a backward compatible extension to enable animation as part of the MOT SlideShow user application for Digital Radio. "APNG 1.0 Specification - Animated Portable Network Graphics" is included as normative Annex A in the ETSI standard TS 101 499 V2.2.1.{{Cite web |title=Digital Audio Broadcasting (DAB); MOT SlideShow; User Application (pdf) Specification |url=https://www.etsi.org/deliver/etsi_ts/101400_101499/101499/02.02.01_60/ts_101499v020201p.pdf |access-date=30 January 2013 |publisher=ETSI}} In 2016, Apple adopted the APNG format as the preferred format for animated stickers in iOS 10 iMessage apps.{{Cite web |title=Messaging - Extensions - iOS Human Interface Guidelines |url=https://developer.apple.com/ios/human-interface-guidelines/extensions/messaging/ |access-date=2016-10-12 |website=developer.apple.com |publisher=Apple, Inc.}} On March 15, 2017, APNG support was added to Chromium.{{Cite web |title=Anzwix / Chromium / Add support for Animated PNG |url=http://anzwix.com/a/Chromium/Add%20Support%20For%20Animated%20PNG |access-date=2017-03-15}}
{{notelist}}
A server-side library exists that allows web browsers that support the canvas tag, but do not support APNG, to display APNGs.{{Cite web |date=11 October 2021 |title=APNG-canvas Library |url=https://github.com/davidmz/apng-canvas |website=GitHub}} Examples of such browsers include Microsoft Edge Legacy and Internet Explorer 9.
See also
References
{{Reflist|30em}}
External links
{{commons category}}
- [https://www.w3.org/TR/png/#apng-frame-based-animation APNG from the PNG Specification (3rd Edition)]
- The APNG specification at mozilla.org's Wiki
- [https://sourceforge.net/projects/libpng-apng/ APNG patch for libpng]
- [https://web.archive.org/web/20080420192652/http://people.mozilla.com/~dolske/apng/demo.html Mozilla's APNG Demo Site]
- [https://littlesvr.ca/apng/ Directory of APNG Software and Developers resources]
- [https://philip.html5.org/tests/apng/tests.html APNG tests for browsers supporting APNG 1.0]
- [https://loadingapng.com AJAX loading animations in APNG]
- [https://groups.google.com/a/chromium.org/forum/#!topic/chromium-dev/2xvXNJMsgxc APNG consideration in the Chromium development group]
{{Graphics file formats}}
{{Compression formats}}
Category:Animated graphics file formats
Category:Graphics file formats