I delete all pictures of an ID3 tag with taglib-sharp (version 2.1.0):
tagFile.Tag.Pictures = new TagLib.IPicture[0];
tagFile.Save();
If I read the file again with taglib-sharp there are no more pictures. This is OK, but the file size stays the same.
If I delete the picutre with a tool like mp3tag (http://www.mp3tag.de) the file size decreases.
Does anyone have an idea how I could reduce the file size with taglib-sharp?
Thanks in advance.
Rene