this post was submitted on 06 Aug 2024
340 points (92.3% liked)

Technology

58115 readers
3922 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] reddig33@lemmy.world 69 points 1 month ago (9 children)

Jpeg XL isn’t backwards compatible with existing JPEG renderers. If it was, it’d be a winner. We already have PNG and JPG and now we’ve got people using the annoying webP. Adding another format that requires new decoder support isn’t going to help.

[–] MimicJar@lemmy.world 63 points 1 month ago

"the annoying webp" AFAIK is the same problem as JPEG XL, apps just didn't implement it.

It is supported in browsers, which is good, but not in third party apps. AVIF or whatever is going to have the same problem.

[–] ProdigalFrog@slrpnk.net 42 points 1 month ago* (last edited 1 month ago) (2 children)

Jpeg XL isn’t backwards compatible with existing JPEG renderers. If it was, it’d be a winner.

According to the video, and this article, JPEG XL is backwards compatible with JPEG.

But I'm not sure if that's all that necessary. JPEG XL was designed to be a full, long term replacement to JPEG. Old JPEG's compression is very lossy, while JPEG XL, with the same amount of computational power, speed, and size, outclasses it entirely. PNG is lossless, and thus is not comparable since the file size is so much larger.

JPEG XL, at least from what I'm seeing, does appear to be the best full replacement for JPEG (and it's not like they can't co-exist).

[–] reddig33@lemmy.world 27 points 1 month ago (2 children)

It’s only backwards compatible in that it can re-encode existing jpeg content into the newer format without any image loss. Existing browsers and apps can’t render jpegXL without adding a new decoder.

[–] ProdigalFrog@slrpnk.net 16 points 1 month ago (7 children)

Existing browsers and apps can’t render jpegXL without adding a new decoder.

Why is that a negative?

[–] seaQueue@lemmy.world 6 points 1 month ago* (last edited 1 month ago) (2 children)

Legacy client support. Old devices running old browser code can't support a new format without software updates, and that's not always possible. Decoding jxl on a 15yo device that's not upgradable isn't good UX. Sure, you probably can work around that with slow JavaScript decoding for many but it'll be slow and processor intensive. Imagine decoding jxl on a low power arm device or something like a Celeron from the early 2010s and you'll get the idea, it will not be anywhere near as fast as good old jpeg.

[–] RamblingPanda@lemmynsfw.com 10 points 1 month ago (1 children)

But how is that different to any other new format? Webp was no different?

[–] seaQueue@lemmy.world 4 points 1 month ago* (last edited 1 month ago)

Google rammed webp through because it saved them money on bandwidth (and time during page loading) and because they controlled the standard. They're doing the same thing with jpeg now that they control jpegli. Jpegli directly lifts the majority of features from jpegxl and google controls that standard.

[–] ProdigalFrog@slrpnk.net 3 points 1 month ago* (last edited 1 month ago) (1 children)

That's a good argument, and as a fan of permacomputing and reducing e-waste, I must admit I'm fairly swayed by it.

However, are you sure JPEG XL decode/encode is more computationally heavy than JPEG to where it would struggle on older hardware? This measurement seems to show that it's quite comparable to standard JPEG, unless I'm misunderstanding something (and I very well might be).

That wouldn't help the people stuck on an outdated browser (older, unsupported phones?), but for those who can change their OS, like older PC's, a modern Linux distro with an updated browser would still allow that old hardware to decode JPEG XL's fairly well, I would hope.

[–] seaQueue@lemmy.world 3 points 1 month ago* (last edited 1 month ago)

Optimized jpegxl decoding can be as fast as jpeg but only if the browser supports the format natively. If you're trying to bolt jxl decoding onto a legacy browser your options become JavaScript and WASM decoding. WASM can be as fast but browsers released before like 2020 won't support it and need to use JavaScript to do the job. Decoding jxl in JavaScript is, let's just say it's not fast and it's not guaranteed to work on legacy browsers and older machines. Additionally any of these bolt on mechanisms require sending the decoder package on page load so unless you're able to load that from the user's cache you pay the bandwidth/time price of downloading and initializing the decoder code before images even start to render on the page. Ultimately bolting on support for the new format just isn't worth the cost of the implementation in many cases so sites usually implement fallback to the older format as well.

Webp succeeded because Google rammed the format through and they did that because they controlled the standard. You'll see the same thing happen with the jpegli format next, it lifts the majority of its featureset from jpegxl and Google controls the standard.

[–] reddig33@lemmy.world 3 points 1 month ago (2 children)
[–] ProdigalFrog@slrpnk.net 16 points 1 month ago* (last edited 1 month ago) (2 children)

The video actually references that comic at the end.

But I don't see how that applies in your example, since both JPEG and JPEG XL existing in parallel doesn't really have any downsides, it'd just be nice to have the newer option available. The thrust of the video is that Google is kneecapping JPEG XL in favor of their own format, which is not backwards compatible with JPEG in any capacity. So we're getting a brand new format either way, but a monopoly is forcing a worse format.

load more comments (2 replies)
load more comments (1 replies)
load more comments (5 replies)
[–] JackbyDev@programming.dev 3 points 1 month ago

They're confusing backwards and forwards compatible. The new file format is backwards compatible but the old renderers are not forward compatible with the new format.

[–] AdrianTheFrog@lemmy.world 3 points 1 month ago (1 children)

JPEG XL in lossless mode actually gives around 50% smaller file sizes than PNG

[–] ProdigalFrog@slrpnk.net 1 points 1 month ago

Oh damn, even better than the estimates I found.

[–] FaceDeer@fedia.io 36 points 1 month ago (1 children)

My understanding is that webp isn't actually all that bad from a technical perspective, it was just annoying because it started getting used widely on the web before all the various tools caught up and implemented support for it.

load more comments (1 replies)
[–] ArchRecord@lemm.ee 21 points 1 month ago

I just wish more software would support webp files. I remember Reddit converting every image to webp to save on space and bandwidth (smart, imo) but not allowing you to directly upload webp files in posts because it wasn't a supported file format.

If webp was just more standardized, I'd love to use it more. It would certainly save me a ton of storage space.

[–] KairuByte@lemmy.dbzer0.com 17 points 1 month ago (2 children)

So… your solution is to stick with extremely dated and objectively bad file formats? You using Windows 95?

[–] NateNate60@lemmy.world 3 points 1 month ago (1 children)
[–] KairuByte@lemmy.dbzer0.com 19 points 1 month ago (8 children)

For what it is? Nothing.

Compared to something like JPEG XL? It is hands down worse in virtually all metrics.

[–] NateNate60@lemmy.world 15 points 1 month ago (4 children)

I think this might sound like a weird thing to say, but technical superiority isn't enough to make a convincing argument for adoption. There are plenty of things that are undeniably superior but yet the case for adoption is weak, mostly because (but not solely because) it would be difficult to adopt.

As an example, the French Republican Calendar (and the reformed calendar with 13 months) are both evidently superior to the Gregorian Calendar in terms of regularity but there is no case to argue for their adoption when the Gregorian calendar works well enough.

Another example—metric time. Also proposed as part of the metric system around the same time as it was just gaining ground, 100 seconds in a minute and 100 minutes in an hour definitely makes more sense than 60, but it would be ridiculous to say that we should devote resources into switching to it.

Final example—arithmetic in a dozenal (base-twelve) system is undeniably better than in decimal, but it would definitely not be worth the hassle to switch.

For similar reasons, I don't find the case for JPEG XL compelling. Yes, it's better in every metric, but when the difference comes down to a measly one or two megabytes compared to PNG and WEBP, most people really just don't care enough. That isn't to say that I think it's worthless, and I do think there are valid use cases, but I doubt it will unseat PNG on the Internet.

[–] KairuByte@lemmy.dbzer0.com 10 points 1 month ago (1 children)

I’m not under the impression it would unseat PNG anytime soon, but “we have a current standard” isn’t a good argument against it. As images get higher and higher quality, it’s going to increase the total size of images. And we are going to hit a point where it matters.

This sounds so much like the misquoted “640K ought to be enough for anybody” that I honestly can’t take it seriously. There’s a reason new algorithms, formats and hardware are developed and released, because they improve upon the previous and generally improve things.

[–] NateNate60@lemmy.world 5 points 1 month ago (1 children)

My argument is not "we have a current standard", it's "people don't give enough of a shit to change".

[–] SkyeStarfall@lemmy.blahaj.zone 1 points 1 month ago (1 children)

People don't need to give a shit, you just need websites and servers and applications to produce and convert images to the new format and the rest will happen "by itself'

It should be pretty much invisible to the users themselvea

[–] NateNate60@lemmy.world 2 points 1 month ago (2 children)

And I suppose sysadmins and application developers are not people?

load more comments (2 replies)
[–] AnUnusualRelic@lemmy.world 7 points 1 month ago (1 children)

You're thinking in terms of the individual user with a handful of files.

When you look at it from a server point of view with tens of terabytes of images, or as a data center, the picture is very different.

Shaving 5 or 10% off of files is a huge deal. And that's not even taking into account the huge leap in quality.

[–] AdrianTheFrog@lemmy.world 1 points 1 month ago* (last edited 1 month ago)

jpeg xl lossless is around 50% smaller than pngs on average, which is a huge difference

https://siipo.la/blog/whats-the-best-lossless-image-format-comparing-png-webp-avif-and-jpeg-xl

load more comments (2 replies)
[–] TheRealKuni@lemmy.world 4 points 1 month ago (2 children)

Compared to something like JPEG XL? It is hands down worse in virtually all metrics.

Only thing I can think of is that PNG is inherently lossless. Whereas JPEG XL can be lossless or lossy.

[–] hedgehog@ttrpg.network 4 points 1 month ago

I haven’t dug into the test data or methodology myself but I read a discussion thread recently (on Reddit - /r/jpegxl/comments/l9ta2u/how_does_lossless_jpegxl_compared_to_png) - across a 200+ image test suite, the lossless compression of PNG generates files that are 162% the size of those losslessly compressed with JPEG XL.

However I also know that some tools have bad performance compressing PNG, and no certainty that those weren’t used

[–] KairuByte@lemmy.dbzer0.com 2 points 1 month ago

It has a higher bit depth at orders of magnitude less file size. Admittedly it has a smaller max dimension, though the max for PNG is (I believe) purely theoretical.

[–] JackbyDev@programming.dev 1 points 1 month ago (1 children)

Honest question, does JPEG XL support lossless compression? If so, then it's probably objectively better than PNG. My understanding with JPEG is that there was no way to actually have lossless compression, it always compressed the image at least a little.

[–] ProdigalFrog@slrpnk.net 3 points 1 month ago (1 children)

JPEG XL supports lossless compression with a roughly 35% reduction in file size compared to PNG.

[–] JackbyDev@programming.dev 1 points 1 month ago
load more comments (5 replies)
[–] AnUnusualRelic@lemmy.world 2 points 1 month ago

That's why all my files are in TGA.

[–] cygnus@lemmy.ca 14 points 1 month ago (1 children)

Forgive my ignorance, but isn't this like complaining that a PlayStation 2 can't play PS5 games?

[–] tabular@lemmy.world 1 points 1 month ago* (last edited 1 month ago)

It's a different culture between PCs and consoles. Consoles are standardized computers - they all have the same* hardware. Game developers can be confident in what functionality their games have access to, and so use the best they can.

PCs in comparison are wildly different from user to user due to being modular: you can pick from many parts to create a computer. As such, devs tend to focus on what most PC's can do and make them optionally better if the PC has access to supporting hardware (e.g. RTX ray-tracing cores).

Besides, video games are drastically complex in comparison to static images 😛

[–] Reverendender@sh.itjust.works 11 points 1 month ago (1 children)

All the cool kids use .HEIF anyway

[–] Imgonnatrythis@sh.itjust.works 10 points 1 month ago

I use jpeg 2000

[–] southsamurai@sh.itjust.works 9 points 1 month ago (1 children)

Isn't that the same as other newer formats though?

There's always something new, and if the new thing is better, adding/switching to it is the better move.

Or am I missing something about the other formats like webp?

[–] reddig33@lemmy.world 5 points 1 month ago (2 children)

You have to offer something compelling for everyone. Just coming out with yet another new standard™ isn’t enough. As pointed out earlier, we already have:

  • jpeg
  • Png
  • Webp
  • HEIC

What’s the point of adding another encoder/decoder to the table when PNG and JPEG are still “good enough”?

[–] pennomi@lemmy.world 13 points 1 month ago

PNG and JPEG aren’t good enough, to be honest. If you run a content heavy site, you can see something like a 30-70% decrease in bandwidth usage by using WebP.

[–] AnUnusualRelic@lemmy.world 9 points 1 month ago

You can't add new and better stuff while staying compatible with the old stuff. Especially not when your goal is compact files (or you'd just embed the old format).