Browse Source

fix for cover art

Luke Pulverenti 9 years ago
parent
commit
d1195257aa

+ 5 - 0
Emby.Drawing/ImageProcessor.cs

@@ -375,6 +375,11 @@ namespace Emby.Drawing
             return GetImageSize(info.Path, info.DateModified, false);
             return GetImageSize(info.Path, info.DateModified, false);
         }
         }
 
 
+        public ImageSize GetImageSize(string path)
+        {
+            return GetImageSize(path, _fileSystem.GetLastWriteTimeUtc(path), false);
+        }
+
         /// <summary>
         /// <summary>
         /// Gets the size of the image.
         /// Gets the size of the image.
         /// </summary>
         /// </summary>

+ 7 - 0
MediaBrowser.Controller/Drawing/IImageProcessor.cs

@@ -32,6 +32,13 @@ namespace MediaBrowser.Controller.Drawing
         /// <returns>ImageSize.</returns>
         /// <returns>ImageSize.</returns>
         ImageSize GetImageSize(ItemImageInfo info);
         ImageSize GetImageSize(ItemImageInfo info);
 
 
+        /// <summary>
+        /// Gets the size of the image.
+        /// </summary>
+        /// <param name="path">The path.</param>
+        /// <returns>ImageSize.</returns>
+        ImageSize GetImageSize(string path);
+        
         /// <summary>
         /// <summary>
         /// Adds the parts.
         /// Adds the parts.
         /// </summary>
         /// </summary>