I have moved the tagging features for my media player application from MediaInfo to taglib-sharp. because taglib-sharp provides writing of tags back to audio files too.. As a matter of fact, Everything else was fine but,it took me whole half day to figure out how to display an image (album art) from taglib-sharp. I thought to finally post this workaround. TagLib.File file = TagLib.File.Create((FilePath); //FilePath is the audio file location TagLib.IPicture pic=file.Tag.Pictures[0]; //pic contains ......