• danA
    link
    fedilink
    arrow-up
    7
    ·
    2 months ago

    PNG offers sharper images, which is more important than compression when you have complex diagrams

    WebP supports both lossy and lossless compression. Diagrams should use lossless compression so the image does not lose any quality.

    PNG gives better performance when rendering

    Images on the web usually aren’t large enough for this to make a significant difference, and it can sometimes be offset by the quicker download time.

    because of CVE-2023-4863.

    libjpeg and libpng have had a number of CVEs too though.

    • lemmyng@lemmy.ca
      link
      fedilink
      English
      arrow-up
      1
      ·
      2 months ago

      WebP supports both lossy and lossless compression.

      WebP did not always support lossless compression. It’s conceivable that the tools’ developers made the decision before that.

      Images on the web usually aren’t large enough for this to make a significant difference, and it can sometimes be offset by the quicker download time.

      That does not fit the use case of diagramming tools. They usually have comparatively few assets that are used multiple times in the same document. The larger the document, the more benefit lower CPU cost has. And I’ve seen LARGE diagrams.

      libjpeg and libpng have had a number of CVEs too though.

      Fair. I’m just speculating that it might be a contributing factor for the tools still not supporting the format.

      • danA
        link
        fedilink
        arrow-up
        2
        ·
        2 months ago

        WebP did not always support lossless compression. It’s conceivable that the tools’ developers made the decision before that.

        WebP was first released in 2010, and lossless support was added in 2011. I really doubt there were tools built between 2010 and 2011 that haven’t been updated since then.

        That does not fit the use case of diagramming tools. They usually have comparatively few assets that are used multiple times in the same document.

        SVG is probably a better fit for this use case.

        • lemmyng@lemmy.ca
          link
          fedilink
          English
          arrow-up
          1
          ·
          2 months ago

          SVG is probably a better fit for this use case.

          Absolutely… when available. But many companies/teams do not release SVG artwork. PNG material is much more commonly available, and actually works with these tools.