Trying to add Album art using c# tag lib,
TagLib.File trackFile = TagLib.File.Create(strLocalFile);
Picture picture = new Picture("Picture path");
picture.Type = PictureType.FrontCover;
picture.MimeType = "image/jpeg";
picture.Description = "Front Cover";
trackFile.Tag.Pictures = new IPicture[1] { picture };
trackFile.Save();
I get picture in windows media player, itunes and iphone (only in portrait mode). When i switch to landscape mode, album art is displayed but when slide across the cover flow album art disappears.
Am i missing something in code ?
I use iTunes 11, iOS 6 on iPhone 4s