Merge pull request #676 from abeloin/master

Fix TrySetResolution
This commit is contained in:
Luke 2014-01-18 07:16:56 -08:00
commit 97ea9d6085

View file

@ -198,7 +198,7 @@ namespace MediaBrowser.Controller.Drawing
{
if (x > 0 && y > 0)
{
bmp.SetResolution(bmp.HorizontalResolution, bmp.VerticalResolution);
bmp.SetResolution(x, y);
}
}