aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-06-24 14:29:23 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-06-24 14:29:23 -0400
commitbcaf9bd19ce4d199cf20315fd486e3a297e1ff1f (patch)
treee5d0315c340ba6251de88ed419cd94c51d68405c
parent023952d04df3765ee5574915f0a84903bb97a748 (diff)
add skia error handling
-rw-r--r--Emby.Drawing.Skia/SkiaEncoder.cs8
-rw-r--r--Emby.Drawing/ImageProcessor.cs5
2 files changed, 9 insertions, 4 deletions
diff --git a/Emby.Drawing.Skia/SkiaEncoder.cs b/Emby.Drawing.Skia/SkiaEncoder.cs
index 2c7dc58c2..35a9bd8aa 100644
--- a/Emby.Drawing.Skia/SkiaEncoder.cs
+++ b/Emby.Drawing.Skia/SkiaEncoder.cs
@@ -63,15 +63,15 @@ namespace Emby.Drawing.Skia
private void LogVersion()
{
+ // test an operation that requires the native library
+ SKPMColor.PreMultiply(SKColors.Black);
+
_logger.Info("SkiaSharp version: " + GetVersion());
}
public static string GetVersion()
{
- using (var bitmap = new SKBitmap())
- {
- return typeof(SKBitmap).GetTypeInfo().Assembly.GetName().Version.ToString();
- }
+ return typeof(SKBitmap).GetTypeInfo().Assembly.GetName().Version.ToString();
}
private static bool IsWhiteSpace(SKColor color)
diff --git a/Emby.Drawing/ImageProcessor.cs b/Emby.Drawing/ImageProcessor.cs
index eb5e0d82a..be4591223 100644
--- a/Emby.Drawing/ImageProcessor.cs
+++ b/Emby.Drawing/ImageProcessor.cs
@@ -410,6 +410,11 @@ namespace Emby.Drawing
return GetCachePath(ResizedImageCachePath, filename, "." + format.ToString().ToLower());
}
+ public ImageSize GetImageSize(ItemImageInfo info, bool allowSlowMethods)
+ {
+ return GetImageSize(info.Path, info.DateModified, allowSlowMethods);
+ }
+
public ImageSize GetImageSize(ItemImageInfo info)
{
return GetImageSize(info.Path, info.DateModified, false);