auto install vcredist

This commit is contained in:
Luke Pulverenti
2016-01-04 14:40:59 -05:00
parent 8ec08ef310
commit 30229982ba
4 changed files with 80 additions and 2 deletions

View File

@@ -72,11 +72,16 @@ namespace Emby.Drawing.ImageMagick
private void LogVersion()
{
_logger.Info("ImageMagick version: " + Wand.VersionString);
_logger.Info("ImageMagick version: " + GetVersion());
TestWebp();
Wand.SetMagickThreadCount(1);
}
public static string GetVersion()
{
return Wand.VersionString;
}
private bool _webpAvailable = true;
private void TestWebp()
{