예제 #1
0
        public static string CacheArtworkData(byte[] artworkData)
        {
            string coverArtCacheSubDirectory = Path.Combine(XmlSettingsClient.Instance.ApplicationFolder, ApplicationPaths.CacheSubDirectory, ApplicationPaths.CoverArtCacheSubDirectory);
            string artworkID = "album-" + Guid.NewGuid().ToString();

            ImageOperations.Byte2Jpg(artworkData, Path.Combine(coverArtCacheSubDirectory, artworkID + ".jpg"), 0, 0, Constants.CoverQualityPercent);

            return(artworkID);
        }