Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/MediaBrowser/Emby into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti committed Jan 12, 2016
2 parents ddf147a + 7161956 commit 1726433
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 185 deletions.
4 changes: 3 additions & 1 deletion Emby.Drawing/ImageMagick/ImageMagickEncoder.cs
Expand Up @@ -181,7 +181,9 @@ public void EncodeImage(string inputPath, string outputPath, int width, int heig

private void ScaleImage(MagickWand wand, int width, int height)
{
if (_config.Configuration.EnableHighQualityImageScaling)
var highQuality = false;

if (highQuality)
{
wand.CurrentImage.ResizeImage(width, height);
}
Expand Down

0 comments on commit 1726433

Please sign in to comment.