From Wikipedia, the free encyclopedia

WebP
Filename extension
.webp [1]
Internet media typeimage/webp [2]
Uniform Type Identifier (UTI)org.webmproject.webp [3]
Magic number52 49 46 46 xx xx xx xx 57 45 42 50 56 50 38 [2]
Developed by Google
Initial release30 September 2010; 13 years ago (2010-09-30) [4]
Type of format Image file format with lossless and lossy compression
Contained by Resource Interchange File Format (RIFF) [5]
Open format?Yes [6]
Website developers.google.com/speed/webp
libwebp
Developer(s) Google
Stable release
1.4.0 [7]  Edit this on Wikidata / 13 April 2024; 5 days ago (13 April 2024)
Repository chromium.googlesource.com/webm/libwebp
Written in C
Type Digital imaging
License BSD license
Website developers.google.com/speed/webp

WebP is a raster graphics file format developed by Google intended as a replacement for JPEG, PNG, and GIF file formats. It supports both lossy and lossless compression, [8] as well as animation and alpha transparency.

Google announced the WebP format in September 2010, and released the first stable version of its supporting library in April 2018.

History

WebP was first announced by Google on 30 September in 2010 as a new open format for lossy compressed true-color graphics on the web, producing files that were smaller than JPEG files for comparable image quality. [9] It was based on technology which Google had acquired with the purchase of On2 Technologies. [10] As a derivative of the VP8 video format, it is a sister project to the WebM multimedia container format. [11] WebP-related software is released under a BSD free software license. [12]

On 3 October 2011, [13] Google added an "Extended File Format" [14] allowing WebP support for animation, ICC profile, XMP and Exif metadata, and tiling (compositing very large images from maximum 16384 × 16384 tiles). Tiling support was never finalized and was removed from the spec again. [15] Older animated GIF files can be converted to animated WebP.

On 18 November 2011, Google announced a new lossless compression mode, and support for transparency ( alpha channel) in both lossless and lossy modes; support was enabled by default in libwebp 0.2.0 (16 August 2012). [16] [17] According to Google's measurements in November 2011, a conversion from PNG to WebP resulted in a 45% reduction in file size when starting with PNGs found on the web, and a 28% reduction compared to PNGs that are recompressed with pngcrush and PNGOUT. [18]

In July 2016, Apple added WebP support to early beta versions of macOS Sierra and iOS 10, [19] but support was later removed in the GM seed versions of iOS 10 and macOS Sierra released in September 2016. In September 2020, WebP support was added in Safari version 14. [20]

The supporting libwebp library reached version 1.0 in April 2018. [21]

In 2019, the Alliance for Open Media published the AVIF standard, intending it to be a successor to WebP. Since 2024, AVIF and WebP have similar levels of support in web browsers. [22]

As of 2024, web browsers that support WebP had 97% market share. [22]

Technology

Simple WebP
Bytes Content
0–3 R I F F
4–7 length + 12
8–11 W E B P
12–15 V P 8 (space) [23]
16–19 length (padded)
20–… VP8 key frame
pad (even length)

WebP's lossy compression algorithm is based on the intra-frame coding of the VP8 video format [24] and the Resource Interchange File Format (RIFF) as a container format. [4] As such, it is a block-based transformation scheme with eight bits of color depth and a luminance–chrominance model with chroma subsampling by a ratio of 1:2 ( YCbCr 4:2:0). [25] Without further content, the mandatory RIFF container has an overhead of only twenty bytes, though it can also hold additional metadata. [4] The side length of WebP images is limited to 16384 pixels. [6]

WebP is based on block prediction. Each block is predicted on the values from the three blocks above it and from one block to the left of it (block decoding is done in raster-scan order: left to right and top to bottom). There are four basic modes of block prediction: horizontal, vertical, DC (one color), and TrueMotion. Mispredicted data and non-predicted blocks are compressed in a 4×4 pixel sub-block with a discrete cosine transform or a Walsh–Hadamard transform. Both transforms are done with fixed-point arithmetic to avoid rounding errors. The output is compressed with entropy encoding. [25] WebP also has explicit support for parallel decoding. [25]

The reference implementation consists of converter software in the form of a command-line program for Linux (cwebp) and a programming library for the decoding, the same as for WebM. The open-source community ported the converter to other platforms, such as Windows. [26]

The WebP container (i.e., RIFF container for WebP) allows feature support over and above the basic use case of WebP (i.e., a file containing a single image encoded as a VP8 key frame). The WebP container provides additional support for:

Metadata
An image may have metadata stored in Exif or XMP formats.
Transparency
An image may have transparency, i.e., an alpha channel.
Color profile
An image may have an embedded ICC profile as described by the International Color Consortium.

Lossless compression

WebP's lossless compression, a newer algorithm unrelated to VP8, was designed by Google software engineer Jyrki Alakuijala. It uses advanced techniques such as dedicated entropy codes for different color channels, exploiting 2D locality of backward reference distances and a color cache of recently used colors. This complements basic techniques such as dictionary coding, Huffman coding and color indexing transform. [16] This format uses a recursive definition: all of the control images, such as the local entropy code selection, are encoded the same way as the whole image itself. [27]

Animation

Google has proposed using WebP for animated images as an alternative to the popular GIF format, citing the advantages of 24-bit color with transparency, combining frames with lossy and lossless compression in the same animation, and support for seeking to specific frames. [28] Google reports a 64% reduction in file size for images converted from animated GIFs to lossy WebP, however, with a very noticeable visual impact, both at default settings, and optimised settings. When converting using lossless WebP, a 19% reduction is achieved as reported by Google, [28] although real world performance is nearer to 10%. [29]

Support

Web browsers

Google actively promotes WebP, and Google Chrome and all Chromium-based browsers support the format. The proprietary PageSpeed Insights tool suggests that webmasters switch from JPEG and PNG to WebP in order to improve their website speed score. [30]

Microsoft Edge versions released after January 2020 are based on the Chromium browser, and have native WebP support. EdgeHTML-based versions of Microsoft Edge support WebP through a platform extension (installed by default) (unless running in the security-hardened "Application Guard" mode, which does not support platform extensions). [31]

Safari added support for WebP in 2020 with iOS 14 and macOS Big Sur. [20]

Mozilla Firefox [32] (and its fork Waterfox [33]) officially supports WebP since January 2019. [34] It was initially considered for implementation in 2013. [35]

Pale Moon implemented initial support for WebP in 2016 with its version 26 milestone. [36]

GNOME Web, Midori, and Falkon natively support WebP.

WebP can also be displayed in all major browsers using the WebPJS JavaScript library, although support in Internet Explorer 6 and above is achieved using Flash. [37]

Support for WebP was added to Links in version 2.26. [38]

Graphics software

At the announcement of WebP in September 2010, no graphics software supported WebP. By 2011, there were plugins for several popular graphics software programs to support WebP, and some programs such as Acorn and Pixelmator had added native support. [39] Over time, support for the WebP format has grown.

Software First version with native support Release date of native support Notes Reference
Pixelmator Classic 1.6.2 October 6, 2010 [40] [41]
Acorn 2.6 October 21, 2010 Export of lossless WebP added in 2022 [42] [43]
ImageMagick 6.6.8-5 March 14, 2011 [44] [45]
GraphicConverter 7.2 April 8, 2011 [46]
XnView 1.98 May 9, 2011 [47]
PaintShop Pro X4 (14.0) September 7, 2011 [48] [49] [50]
Picasa 3.9 December 8, 2011 [51]
IrfanView 4.32 December 15, 2011 [52]
GDAL 1.9.0 January 9, 2012 [53] [54]
gThumb 3.1.1 September 23, 2012 [55]
PhotoLine 18 October 4, 2013 [56] [57]
Canvas X 15 November 20, 2013 [58] [59]
Krita 2.9.5 June 10, 2015 Basic support [60]
5.1.0 August 18, 2022 Full support [61] [62]
Aseprite 1.1.1 November 6, 2015 [63]
Sketch 41 November 8, 2016 [64]
GIMP 2.10 April 27, 2018 [65] [66]
Paint.NET 4.2.5 October 1, 2019 [67]
Pixelmator Pro 1.6.4 June 4, 2020 [68]
Inkscape 1.1 May 24, 2021 Export only [69]
Xara Designer Pro+ 18.5 August 24, 2021 [70]
Adobe Illustrator 26.0 October 16, 2021 [71] [72]
Adobe Photoshop 23.2 February 17, 2022 [73] [74]
Blender 3.2 June 8, 2022 [75] [76]
LibreOffice Draw 7.4 August 18, 2022 [77]
Affinity Designer 2.0 November 9, 2022 [78] [79]
Shotwell 0.32.0 April 23, 2023 [80]
Windows Photos 2023.11050.2013.0 May 3, 2023 [81] [82]
CorelDRAW 24.5 September 18, 2023 [83]
Clip Studio Paint 3.0.0 March 14, 2024 [84]

In 2019, Google released a free plug-in that enables WebP support in earlier versions of Adobe Photoshop. [85] Free Photoshop plug-ins had been released by Telegraphics and fnordware before that. [86] [87] GIMP up to version 2.8 also supported WebP via a plugin; [88] later, this plugin was shipped in GIMP 2.9 branch, and received multiple improvements. [89] Google has also released a plug-in for Microsoft Windows that enables WebP support in Windows Photo Viewer, Microsoft Office 2010, FastPictureViewer, [90] and any other application that uses Windows Imaging Component. [91]

Other programs

FFmpeg linked with the VP8/VP9 reference codec library libvpx can extract VP8 key frames from WebM media and a script can then add the WebP RIFF header and the NUL pad byte for odd frame lengths. Meanwhile, FFmpeg supports libwebp directly.

Gmail and Google Photos both support WebP. Support for WebP is also planned for Google App Engine. The Instant Previews feature of Google Search uses WebP internally to reduce disk space used by previews. [92] Android 4.0 supports encoding and decoding WebP images (via bitmap and Skia). [93] SDL_image supports the format since 1.2.11.

Sumatra PDF supports WebP images for both standalone files and comic books since version 2.4. [94]

Telegram Messenger uses WebP for its Stickers, claiming they are displayed five times faster compared to the other formats usually used in messaging apps. [95]

Signal uses WebP for its non-animated stickers. [96]

LibreOffice supports the import of WebP images since version 7.4, [97] so does the LibreOffice technology based online office Collabora Online.

Godot Engine as of version 4.0 supports importing and exporting WebP images and uses WebP as its internal format for storing imported compressed textures. [98]

Content management systems (CMS) usually do not support WebP natively or by default. However, for most popular CMS, extensions are available for automated conversion from other image formats to WebP and delivering WebP images to compatible browsers. Since June 2021, WordPress supports WebP natively. [99]

Social media services known to natively support WebP in messages, include Facebook, [100] Slack, [101] Discord and ElementIO, but as of 6 March 2024 the two latter ones only support static WebP, and not animated WebP.

Restrictions

Like VP8 on which it is based, former lossy WebP supports only 8-bit YUV 4:2:0 format, [102] which may cause color loss on images with thin contrast elements (such as in pixel art and computer graphics) and ghosting in anaglyph. To overcome this restriction, new lossless WebP supports VP8L encoding that works exclusively with 8-bit RGBA (red, green, blue, alpha) color space. [103] [104]

However, due to the complexity of the compression, it is also significantly slower than other web image formats. It is therefore usually not advisable to process the images directly, as is the case with Web Map Services. [105]

Criticism

In September 2010, Fiona Glaser, a developer of the x264 encoder, wrote a very early critique of WebP. [24] Comparing different encodings (JPEG, x264, and WebP) of a reference image, she stated that the quality of the WebP-encoded result was the worst of the three, mostly because of blurriness on the image. Her main remark was that "libvpx, a much more powerful encoder than ffmpeg's jpeg encoder, loses because it tries too hard to optimize for PSNR" (peak signal-to-noise ratio), arguing instead that "good psycho-visual optimizations are more important than anything else for compression". [24]

In October 2013, Josh Aas from Mozilla Research published a comprehensive study of current lossy encoding techniques [106] and was not able to conclude that WebP outperformed mozjpeg by any significant margin. [107]

Vulnerability

In September 2023, two critical vulnerabilities [108] relating to WebP images were discovered by Apple Security Engineering and Architecture (SEAR) and the Citizen Lab, potentially affecting Google Chrome, Chromium-based browsers and the Google's libwebp project, among any application implementing libwebp. Among these vulnerabilities, CVE-2023-4863 was an actively exploited vulnerability with a high risk rating of CVSS 8.8. This could lead to an out of bounds/overflow condition in applications using the affected libwebp library, upon exploitation of a maliciously crafted .webp lossless file. This could result in a denial of service (DoS), or worse, enabling malicious remote code execution (RCE). The extensive use of libwebp packages across hundreds of applications, including all categories from web browsers to mobile apps, posed a major patching challenge to mitigate the vulnerability due to the demanding testing requirements before release, highlighting the implications of this vulnerability on a wide scale.

WebP 2

Google has been developing the second version of WebP since June 2021. Its reference implementation is libwebp2. The main goal of this new format is to reach similar compression ratios as AVIF while remaining faster to encode and decode. [109]

On October 12, 2022, Google changed WebP 2's development repository's README file to state that "WebP 2 will not be released as an image format" and began describing WebP 2 as a "playground for image compression experiments". [110]

See also

  • Comparison of graphics file formats
  • AVIF, an image format based on the AV1 video format [111]
  • BPG, an image format intended to be a more compression-efficient replacement for the JPEG image format, based on the intra-frame encoding of the High Efficiency Video Coding (HEVC) video compression standard, introduced in 2014.
  • FLIF, a discontinued lossless image format which claimed to outperform PNG, lossless WebP, lossless BPG and lossless JPEG2000 in terms of compression ratio, introduced in 2015. FLIF was superseded by JPEG XL.
  • HEIF, another image format based on HEVC.
  • From the Joint Photographic Experts Group:
    • JPEG-LS, an old but efficient lossless format, introduced in 1999.
    • JPEG 2000, an improvement intended to replace the older JPEG by the JPEG committee, introduced in 2000.
    • JPEG XR, an alternative to JPEG 2000 supporting HDR and wide gamut color spaces, introduced in 2009.
    • JPEG XL, particularly optimised for responsive web environments, so that content renders well on a wide range of devices. Moreover, it includes several features that help transition from the legacy JPEG format. JPEG XL was introduced at the end of 2020.
  • MNG and APNG, PNG-based animated image formats, supporting lossless 24-bit RGB color and 8-bit alpha channel.

References

  1. ^ "WEBP file extension". DotWhat.net. Retrieved 1 October 2010.
  2. ^ a b WebP Image Format Media Type Registration. IETF. I-D draft-zern-webp. Retrieved 7 July 2022.
  3. ^ "webP". Apple Developer Documentation: Uniform Type Identifiers. Apple Inc.
  4. ^ a b c Rabbat, Richard (30 September 2010). "WebP, a new image format for the Web". Chromium Blog. Retrieved 1 October 2010.
  5. ^ "RIFF Container". Google Code. Retrieved 1 October 2010.
  6. ^ a b "WebP FAQs". Google Code. Retrieved 6 October 2010.
  7. ^ "libwebp-1.4.0".
  8. ^ Calore, Michael (1 October 2010). "Meet WebP, Google's New Image Format". Wired. Retrieved 5 October 2010.
  9. ^ "Comparative Study of WebP, JPEG and JPEG 2000". Google Code. Archived from the original on 4 October 2010. Retrieved 1 October 2010.
  10. ^ Shankland, Stephen (30 September 2010). "Google Offers JPEG Alternative for Faster Web - With WebP, Google hopes to drastically cut data-transfer barriers to Web browsing. But it's not easy to challenge JPEG's dominance". CNET News. CBS Interactive. Retrieved 18 February 2021.
  11. ^ Paul, Ryan (2 October 2010). "Google's New VP8-Based Image Format Could Replace JPEG". Ars Technica. Condé Nast. Retrieved 5 October 2010.
  12. ^ Rabbat, Richard (3 October 2010). "License/Patent clarification". Google Groups. Retrieved 11 March 2011.
  13. ^ Arora, Vikas (3 October 2011). "WebP-Mux (RIFF based container) framework". Google Groups. Retrieved 18 November 2011.
  14. ^ "WebP Container Specification". Google Developers. Retrieved 4 April 2020.
  15. ^ Zern, James (22 December 2014). "webp-container-spec: remove references to fragments". Retrieved 6 May 2023.
  16. ^ a b Alakuijala, Jyrki (30 August 2012). "Lossless and Transparency Modes in WebP". Google Developers Blog. Retrieved 6 September 2012.
  17. ^ Zern, James (16 August 2012). "Version 0.2.0". Chromium. Retrieved 6 January 2017.
  18. ^ Alakuijala, Jyrki; Arora, Vikas; Joshi, Urvang (18 November 2011). "Lossless and Transparency Encoding in WebP". Google Code Blog. Retrieved 18 November 2011.
  19. ^ Stephen Shankland (19 July 2016). "Apple tests Google graphics format to speed up websites". CNET. Retrieved 20 July 2016.
  20. ^ a b "Apple Developer Documentation - Safari 14 Release Notes". developer.apple.com. Retrieved 18 February 2021.
  21. ^ "libwebp 1.0.0 release". 21 April 2018. Retrieved 18 February 2021.
  22. ^ a b "Can I use... WebP image format". caniuse.com. Retrieved 19 November 2021.
  23. ^ "WebP Container Specification: U+0020 for lossy images, and "L" for lossless images".
  24. ^ a b c Glaser, Fiona (30 September 2010). "H.264 and VP8 for still image coding: WebP?". Diary Of An x264 Developer. Archived from the original on 19 March 2015. Retrieved 1 October 2010.
  25. ^ a b c "VP8 Data Format and Decoding Guide" (PDF). 23 September 2010. Retrieved 2 October 2010.[ permanent dead link]
  26. ^ "WebP for .NET". Codeplex. Microsoft. 1 October 2010. Archived from the original on 15 September 2021. Retrieved 5 May 2022.
  27. ^ Jyrki Alakuijala (16 September 2014). "WebP Lossless Bitstream Specification". Google Inc.
  28. ^ a b "Frequently Asked Questions". 21 February 2014. Retrieved 23 February 2014.
  29. ^ "GIF is (Finally) dead. Long live Webp". technedigitale.com. 24 July 2021. Retrieved 19 August 2021.
  30. ^ "Serve images in modern formats". Chrome Developers.
  31. ^ "WebP images won't load in Microsoft Edge with Application Guard". 14 November 2018. Retrieved 14 November 2018.
  32. ^ "Firefox 65 for developers - Mozilla | MDN". developer.mozilla.org. 24 August 2023.
  33. ^ Kontos, Alex. "Waterfox 54.0.1 Release (Windows, Mac & Linux)". Retrieved 19 November 2018.
  34. ^ "Firefox 65 supports Google's WebP Image format - gHacks Tech News". gHacks Technology News. 2 November 2018. Retrieved 20 January 2022.
  35. ^ Shankland, Stephen. "Why Mozilla had a change of heart about WebP images". CNET. Retrieved 20 January 2022.
  36. ^ Moonchild. "Pale Moon – Release Notes for Archived Versions". www.palemoon.org. Retrieved 19 November 2018.
  37. ^ "WebPJS – Google's new image format WebP for not supported browsers (with alpha-channel)". Retrieved 20 November 2011.
  38. ^ "Changelog". Retrieved 14 May 2022.
  39. ^ "WebP in Chrome, Picasa, Gmail With a Slew of New Features and Improvements". Chromium Blog. Google. 20 May 2011.
  40. ^ Chartier, David (4 October 2010). "Pixelmator to add support for Google's WebP image format". Macworld. IDG.
  41. ^ "Pixelmator 1.6.2 Adds WebP Support". Pixelmator Blog. Pixelmator. 6 October 2010. Retrieved 14 January 2024.
  42. ^ "Acorn Release Notes". Flying Meat Software. 18 June 2022. Acorn 7.2. New "Lossless" option when exporting images as WebP.
  43. ^ "Acorn Release Notes". Flying Meat Software. 21 October 2010. Acorn 2.6. New: Acorn can now open WebP images, as well as write them with Web Export.
  44. ^ "ImageMagick Image Formats". ImageMagick.org. ImageMagick Studio LLC. Retrieved 24 May 2011.
  45. ^ "ImageMagick: Changelog". ImageMagick. 14 March 2011. Archived from the original on 16 April 2011. Add support for the WebP image format.
  46. ^ "Overview of new features and versions". GraphicConverter. Lemke Software. 8 April 2011. Version 7.2 (Build 187). Archived from the original on 19 February 2018. webp import and export added (Intel only)
  47. ^ "XnView 1.98". XnView - Windows. XnView. 9 May 2011. Archived from the original on 25 August 2011.
  48. ^ "Corel® PaintShop™ Pro X4 Delivers Professional Photo Editing Power, Dramatic Performance Improvements and New Creative Effects". News Releases - Newsroom. Corel Corporation. 7 September 2011. Archived from the original on 13 November 2011.
  49. ^ "Corel PaintShop Pro X4 - Powerful Photo-Editing Software". Corel Corporation. Archived from the original on 13 November 2011.
  50. ^ Radim (9 September 2011). "PaintShop Pro X4". Alludo user to user web board. p. 3. Archived from the original on 11 February 2024.
  51. ^ "Picasa Release Notes". Google Support. Google. 8 November 2011. Archived from the original on 26 May 2012.
  52. ^ "History of IrfanView changes/versions". IrfanView. Irfan Skiljan. 15 December 2011. Retrieved 14 January 2024. Support for WebP format (Weppy format, PlugIn, reading + saving)
  53. ^ "WEBP - WEBP". GDAL. Archived from the original on 7 August 2011. Retrieved 30 November 2011.
  54. ^ "GDAL/OGR 1.9.0 Released". OSGeo. 9 January 2012. Starting with GDAL 1.9.0, GDAL can read and write WebP images through the WebP library.
  55. ^ Bacchilega, Paolo (23 September 2012). "gThumb 3.1.1 released". gthumb-list. The GNOME Project. Retrieved 2 May 2020. Added ability to load and save WebP images.
  56. ^ "PhotoLine: New in version 18". 20 December 2023. Archived from the original on 6 October 2013. Retrieved 5 October 2013. WebP is new file format, which is intended to replace JPEG. It allows to create very small image files. The Web Export function supports WebP, too.
  57. ^ Thacker, Jim (4 October 2013). "Computerinsel releases PhotoLine 18". CG Channel. Retrieved 14 January 2024.
  58. ^ "What's New in Canvas 15". ACD Systems. Archived from the original on 5 December 2013. Canvas 15 now supports the importing and exporting of WebP, a format designed to allow lossless and lossy compression for images being uploaded to the web.
  59. ^ "Newest release of Deneba Canvas possesses a host of efficiency-driven advancements". ACD Systems Blog. ACD Systems. 20 November 2013. Archived from the original on 21 October 2014.
  60. ^ Petrovic, Scott (10 June 2015). "Krita 2.9.5 Released". Krita. Krita Foundation. Retrieved 17 March 2024. Add support for WebP (on Linux)
  61. ^ "Krita 5.1 Release Notes". Krita. Krita Foundation. Retrieved 17 March 2024. WebP support (MR 891 MR 1268). We had basic WebP support already, but this adds full support using WebP Codec with every possible toggle imaginable.
  62. ^ Rempt, Halla (18 August 2022). "Krita 5.1.0 Released!". Krita. Krita Foundation. Retrieved 17 March 2024.
  63. ^ Capello, David (6 November 2015). "Release Notes". Aseprite. Aseprite v1.1.1. Added support to load/save static .webp files
  64. ^ "Download the latest Sketch software updates". Sketch. 8 November 2016. Retrieved 27 January 2024. Sketch can now both import and export images in the WebP format.
  65. ^ "GIMP 2.10 Release Notes". GIMP. Retrieved 2 May 2018. GIMP now also ships with native WebP support, including features like animation, ICC profiles, and metadata.
  66. ^ Wilber (27 April 2018). "GIMP 2.10.0 Released". GIMP. Retrieved 14 January 2024. Support for several new image formats added (OpenEXR, RGBE, WebP, HGT), as well as improved support for many existing formats (in particular more robust PSD importing).
  67. ^ Brewster, Rick (1 October 2019). "paint.net 4.2.5 is now available!". paint.net blog. New: WebP images are now supported due to bundling @null54's excellent WebPFileType plugin (v1.3.0.0)
  68. ^ "Pixelmator Pro adds WebP support". Pixelmator Team. 4 June 2020. Retrieved 16 March 2024.
  69. ^ "Inkscape 1.1 Release Notes". Inkscape. 24 May 2021. Retrieved 14 January 2024. Export as JPG, TIFF, optimized PNG and WebP directly from Inkscape
  70. ^ "Xara Designer Pro X18 Release Notes". Xara Designer Pro. Xara. 24 August 2021. pp. 9–11. Retrieved 9 September 2021. WebP has been added to the extensive list of file formats that Designer Pro can export.
  71. ^ "Feature summary | Illustrator (October 2021 release)". Adobe Help Center. Adobe. 16 November 2022. Retrieved 14 January 2024. You can now open or place High-efficiency Image Format (HEIF) or Web Picture (WebP) format files in Illustrator.
  72. ^ Wamser, James (2 November 2023). "Adobe Illustrator New Features Guide" (PDF). pp. 44–45. Retrieved 14 January 2024. You can now open or place High-efficiency Image Format (HEIF) or Web Picture (WebP) format files in Illustrator.
  73. ^ "Work with WebP files in Photoshop". Adobe Help Center. Adobe. 24 May 2023. Retrieved 14 January 2024. With Photoshop 23.2, Photoshop provides full support to the WebP file format.
  74. ^ Thacker, Jim (17 February 2022). "Adobe ships Photoshop 23.2". CG Channel.
  75. ^ "Blender 3.2 Release Notes | Pipeline, Assets, IO". Blender Developer Wiki. Blender. Retrieved 20 June 2022. Blender now has support for the WebP image format which works similar to PNG but compresses faster and generates smaller file sizes.
  76. ^ "Blender 3.2 Release Notes". Blender Developer Wiki. Blender.
  77. ^ Brinkmann, Martin (18 August 2022). "LibreOffice 7.4 launches with webp support and dark mode support for Windows". gHacks Technology News. Retrieved 14 January 2024.
  78. ^ "Affinity Photo – Complete Feature List". Affinity. 2.0 New Features. Retrieved 27 January 2024. WebP file import and export
  79. ^ Endicott, Sean (9 November 2022). "Affinity 2 launch causes controversy among content creators". Windows Central. Retrieved 27 January 2024.
  80. ^ Sneddon, Joey (23 April 2023). "Shotwell Photo App Now Supports AVIF, HEIC & WebP". OMG! Linux. Retrieved 14 January 2024.
  81. ^ Tkachenko, Sergey (18 May 2023). "Windows 11 Photos app now supports WebP images". Winaero. Retrieved 14 January 2024.
  82. ^ Hsieh, Yvonne (3 May 2023). "Photos app for Windows 11 update brings improvements for Windows Insiders". Windows Insider Blog. Microsoft.
  83. ^ "CorelDRAW Graphics Suite Subscriber Updates (Windows and Mac) Release notes". CorelDRAW Graphics Suite. Corel Corporation. 18 September 2023. Retrieved 14 January 2024. A range of enhancements to the Export docker/inspector make it easier than ever to output objects and pages to even more file formats, now including CDR, WEBP, CGM, PSD, and BMP.
  84. ^ "Clip Studio Paint Ver. 3.0 available now! New Features Bring Energy and Fun to Your Creation". Celsys, Inc. 14 March 2024. Retrieved 16 March 2024. Import and export WebP files: You can now import and export this lightweight file format used for web pages
  85. ^ "WebPShop". Photoshop plug-in for opening and saving WebP images. Google Inc. Retrieved 15 July 2019.
  86. ^ "WebP Format". Free plugins for Photoshop & Illustrator. Telegraphics. Retrieved 23 May 2011.
  87. ^ "Adobe WebM/WebP plugins". fnordware.com. Retrieved 29 June 2015.
  88. ^ "nathan-osman/gimp-webp: Gimp plugin for loading and saving WebP images". GitHub. Retrieved 30 March 2016.
  89. ^ Prokoudine, Alexandre (24 August 2017). "GIMP 2.9.6 Released". GIMP. Retrieved 24 May 2018.
  90. ^ "FastPictureViewer Professional | Image File Formats Compatibility Chart". www.fastpictureviewer.com.
  91. ^ "WebP Codec for Windows". WebP website. Google Inc. Archived from the original on 5 May 2012. Retrieved 24 May 2011.
  92. ^ "The Chromium Blog: WebP in Chrome, Picasa, Gmail With a Slew of New Features and Improvements". 21 May 2011. Retrieved 20 May 2011.
  93. ^ "Android 4.0 Platform Highlights".
  94. ^ "version history". SumatraPDF documentation. Retrieved 16 September 2023.
  95. ^ "Stickers Done Right". Telegram. 2 January 2015.
  96. ^ "Stickers – Signal Support".
  97. ^ "LibreOffice 7.4 Community: Release Notes - the Document Foundation Wiki".
  98. ^ "Add support for saving WebP images #61770". GitHub. 21 June 2022.
  99. ^ "WordPress 5.8 adds WebP support". 7 June 2021.
  100. ^ "Supported image formats for ads". Facebook. Retrieved 23 March 2024.
  101. ^ Richi Jennings (13 September 2023). "Patch EVERYTHING: Widely Used 'WebP' Code has Critical Bug". Security Boulevard. Retrieved 23 March 2024.
  102. ^ "Format Overview". VP8 Data Format and Decoding Guide. IETF. November 2011. sec. 2. doi: 10.17487/RFC6386. RFC 6386. Retrieved 21 January 2014.
  103. ^ "Frequently Asked Questions | WebP". Google Developers.
  104. ^ "Specification for WebP Lossless Bitstream". Google Developers.
  105. ^ "WebP Discussion Group: Compression time and file size". 16 February 2023. Retrieved 17 February 2023.
  106. ^ Josh Aas (17 October 2013). "Studying Lossy Image Compression Efficiency". Mozilla Research Blog. Retrieved 10 September 2014.
  107. ^ Josh Aas (15 July 2014). "Mozilla Advances JPEG Encoding with mozjpeg 2.0". Mozilla Research Blog. Retrieved 10 September 2014.
  108. ^ Goodin, Dan (21 September 2023). "Incomplete disclosures by Apple and Google create "huge blindspot" for 0-day hunters". Ars Technica. Retrieved 29 September 2023.
  109. ^ "codecs/libwebp2 - Git at Google". chromium.googlesource.com. 8 June 2021. Retrieved 16 June 2021. Updated from time to time.
  110. ^ Guyon, Yannis. "Diff - 1251ca748c17278961c0d0059b744595b35a4943". Google Git. Google LLC. Retrieved 30 October 2022.
  111. ^ "AV1 Still Image File Format (AVIF)". aomediacodec.github.io. Retrieved 10 October 2018.

External links