JPEG compression utility
-
Does anyone know of a good utility that can automatically compress JPEG images that a user uploads to the server? For instance, a user uploads a photograph that is 2 MB, and the utility automatically compresses it to take up only 20 KB at a slight loss of picture quality (after the upload is complete).
-
Does anyone know of a good utility that can automatically compress JPEG images that a user uploads to the server? For instance, a user uploads a photograph that is 2 MB, and the utility automatically compresses it to take up only 20 KB at a slight loss of picture quality (after the upload is complete).
You do know that JPEG is a compressed format already? You can, however, reprocess it and resave a higher compression ratio obviously with more loss. Your mileage may vary.
"Republicans are the party that says government doesn't work and then they get elected and prove it." -- P.J. O'Rourke
-
You do know that JPEG is a compressed format already? You can, however, reprocess it and resave a higher compression ratio obviously with more loss. Your mileage may vary.
"Republicans are the party that says government doesn't work and then they get elected and prove it." -- P.J. O'Rourke
-
Yes, I'm aware of that, and that's what I want to do. In any case, according to this article http://www.geekpedia.com/tutorial232_Reducing-JPEG-Picture-Quality-using-Csharp.html[^], the namespace System.Drawing.Imaging should have all I need.