1
0
mirror of https://github.com/microsoft/DirectXTex synced 2024-11-09 22:40:06 +00:00

Updated Image formats (markdown)

Chuck Walbourn 2024-01-19 10:58:02 -08:00
parent cf829cae8c
commit 01b3014a6d

@ -39,9 +39,13 @@ To aid in debugging, here is a [simple console program](https://github.com/Micro
# JPEG (Joint Photographic Experts Group)
The ``JPG`` or ``JPEG`` file format is a lossy compressed image file format commonly used for photos. See [Independent JPEG Group](http://ijg.org/) and [Wikipedia](https://wikipedia.org/wiki/JPEG) for more details.
> For support for this file format on *Windows Subsystem for Linux*, see [[Using-JPEG-PNG-OSS]].
# PNG (Portable Network Graphics)
The ``PNG`` file format is a commonly used lossless compressed image file format, which has largely taken over for ``GIF`` in use for general web graphics. See [libpng](http://libpng.org/pub/png/libpng.html) and [Wikipedia](https://wikipedia.org/wiki/Portable_Network_Graphics) for more details and history.
> For support for this file format on *Windows Subsystem for Linux*, see [[Using-JPEG-PNG-OSS]].
# PPM/PFM (Portable PixMap/Portable Float Map)
The ``PPM`` file is an 80s era extremely simple file format that supports RGB values in ASCII or binary format. ``PFM`` is an extension of this format for floating-point RGB values. This format does not support compression or alpha channels, and it's primary utility is for loading some academic-provided image data.