marcus
marcus

Reputation: 10096

Library for lossless image conversion

Is there any c# library that handles lossless conversion between different image formats?

Upvotes: 0

Views: 703

Answers (1)

Reed Copsey
Reed Copsey

Reputation: 564871

There is no such thing as a universally lossless conversion routine.

Some image formats (ie: GIF and JPEG [not 2k]) are inherently lossy. If you convert to those formats, you will always lose information.

If you are converting between lossless formats (ie: bmp, png, etc), ANY image library, including the FCL Image/Bitmap classes, will work perfectly fine.

Upvotes: 1

Related Questions