PNG Compression in .net

16,082

A lossless compression method does not have to be single quality level. I mean, some lossless compression methods have some parameters to choose speed/compression ratio trade-off. It's up to author.

As to PNG compression, it's actually bunch of filters and deflate algorithm. Considering deflate has a redundant encoding stage (e.g. two different compressors can produce completely different output, yet still they can be decompressed by any valid decompressor), it's no wonder several programs outputs different PNGs. Note that, I'm still not taking filters into account. There are several filters and there is no "best" filter i.e. it's quality varies by image.

Due to it's redundant feature, some people wrote PNG optimizers which take a regular PNG as input to produce smaller PNG without any perceptual loss. Some of them applies some tricks such as filling completely transparent area with some predictable colors to increase compression. But, in general they tweak parameters in a brute-force fashion.

Now, simplest answer for your question could be that you have two options:

  1. If you're going to run your executable on a desktop environment, you can use one of these tools as an optimizer. But, in shared hosting you can't use them due to possible privileges.
  2. You can write your own PNG writer in .NET that takes into account some brute-force parameter tuning.
Share:
16,082
Ehtsham
Author by

Ehtsham

Updated on October 12, 2022

Comments

  • Ehtsham
    Ehtsham over 1 year

    I want to compress bitmaps to PNG with different compression levels as these levels are available in JPEG compression in C#. I have 20 to 30 images of different sizes to process in 1 sec. Is there any library to achieve this compression in PNG with different compression levels?

  • deerchao
    deerchao over 12 years
    Maybe he is asking how to change bit depth?
  • D'Arcy Rittich
    D'Arcy Rittich over 11 years
    A lossless compression method does not have to be single quality level. - If by quality, you are talking image quality, then you are incorrect. By definition it must provide the exact same quality.
  • Osman Turan
    Osman Turan over 11 years
    I think, it's clear that what I'm talking about compression level (i.e. output quality in terms of compressed size). More over, I've explicitly stated it: "I mean, some lossless compression methods have some parameters to choose speed/compression ratio trade-off.".
  • D'Arcy Rittich
    D'Arcy Rittich over 11 years
    Quality is not normally a word used with respect to file size. So no, it is not clear.
  • Raven
    Raven over 10 years
    "seems to confirm the compression format is lossy" correct me if I'm wrong but png's are lossless and not lossy...
  • Nyerguds
    Nyerguds over 7 years
    Compression level does not equal quality level. For example, Winrar will always produce lossless compression (would be pretty bad for files transport otherwise), so its "quality level" is always 100%, but it does have compression levels; higher compression will make the final file take less space, but will take longer to compress/decompress.
  • Nyerguds
    Nyerguds over 7 years
    Yeah, that should be "does not have to be single compression level"