Reputation: 10096
Is there any c# library that handles lossless conversion between different image formats?
Upvotes: 0
Views: 703
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