> Today’s Tedium discusses 10 image formats that time forgot. > (list includes BMP, TIFF, TGA) I remember seeing lots of software using Quicktime PICT files, even on Windows, but I've never seen anyone break it down (Wikipedia does a bit[0]). Did everyone mostly use it as a container for JPEGs? [0] https://en.wikipedia.org/wiki/PICT
Image file formats that didn’t make it
81–90 of 210 posts
Re: Image file formats that didn’t make it
#82Anecdotally, the first time I heard of TGA was in Tomb Raider. The Tomb Raider games of old had a screenshot feature that outputted TGA files of gameplay and were useful for making walk-throughs for other people (you would typically convert them to JPG when sharing on the web). And I still see BMP files being used even in modern games. Yeah: PNG is better, but BMP has its uses.
TGA is a great format for tinkering because it is very simple to code yourself to generate images and it is still widely supported.
These days though, I use tend to use the even simpler PPM format. It uses normal RGB byte ordering from top to bottom, and it's simple enough that I can code a basic writer for it from memory:
fprintf(stream, "P6 %d %d 255\n", width, height);
fwrite(image, 1, height * width * 3, stream);
(Often, I won't even bother opening a file to write to. I'll just emit the image to stdout and then pipe it to Image Magick for display or to convert to a compressed image format for storage.)Re: Image file formats that didn’t make it
#83The successor to JPEG is going to be JPEG XL (.jxl) https://jpegxl.info/
Re: Image file formats that didn’t make it
#84JPEG2000 is a big one that seems to be missing. It is used in medical imaging or something, because laws? But its visual quality is worse than old JPEG, despite a PSNR advantage. Apparently, compression researchers used to think that people care about PSNR.
Re: Image file formats that didn’t make it
#85The successor to JPEG is going to be JPEG XL (.jxl) https://jpegxl.info/
What about webp, avif, and the like?
Re: Image file formats that didn’t make it
#86Hmm; Tiff is still the default universally-readable format for many lossless purposes. It also seems to be used automatically in places: e.g. in Lightroom, clicking "External Editor" sends a TIF file to the external editor and imports it back by default. I thought it was also used in some scientific/analysis scenarios as well. I thought I also saw BMP in a lot of games for some reasons (not to mention it's default ou…
GeoTIFF is an interesting extension of TIFF that seems to serve a niche that other image formats cannot. It doesn't have the compression of say WebP or PNG, but the fact that it can have rich geographical metadata (projection, coordinates, etc.) makes it incredibly useful for GIS applications.
Re: Image file formats that didn’t make it
#87Tiff is very much not dead. It is likely one of the image formats more widely used today. Terabytes of new tiff images are prodced every hour and distributed by many remote sensing operators. It is a really flexible and robust format also. How else are you going to store a floating-point multispectral image of 8 bands and 50.000 x 50.000 pixels, arranged tile-wise for easy cropping?
Several years ago, I attended a talk at an imaging.org conference where the presenter, an archivist from the Smithsonian, described how they used tiff in their work.
Re: Image file formats that didn’t make it
#88The successor to JPEG is going to be JPEG XL (.jxl) https://jpegxl.info/
Still waiting for browser and industry wide support. So far no one seems to care much.
It's in Chrome, Firefox, Edge, and Opera behind flags - works great!
Re: Image file formats that didn’t make it
#89Is bmp really dead? It's my go-to file format when playing around with graphic image programming (just stupid hobby stuff). It's easy to pick a format and write one out, and most everything reads it as a format that I've used, even on linux. It can be tricky reading one created by something else, but if you make assumptions based on the header sizes and the fact that you rarely run into one that not a simple 24-bit p…
Re: Image file formats that didn’t make it
#90Ha ha ha I work in an image format so forgotten it doesn't even make the forgotten list.
Computer Graphics Metafile bitches!
My god how I loathe that thing. It's kept alive in specifications purely by the efforts of a single software company flooding all the WGs with cheerleaders. "No, it's not obsolete, SVG is just a thing used by hackers and programmers"