Merge pull request #415 from eoner/master

Issue #400
This commit is contained in:
Matthew Leibowitz 2018-02-20 16:52:59 +02:00 коммит произвёл GitHub
Родитель 19673bb4ec c18f5d661a
Коммит 1f74140e46
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -58,8 +58,8 @@ namespace SkiaSharp.Views.WPF
return;
int width, height;
double dpiX = 1.0;
double dpiY = 1.0;
double dpiScaleX = 1.0;
double dpiScaleY = 1.0;
if (IgnorePixelScaling)
{
width = (int)ActualWidth;
@ -68,10 +68,10 @@ namespace SkiaSharp.Views.WPF
else
{
var m = PresentationSource.FromVisual(this).CompositionTarget.TransformToDevice;
dpiX = m.M11;
dpiY = m.M22;
width = (int)(ActualWidth * dpiX);
height = (int)(ActualHeight * dpiY);
dpiScaleX = m.M11;
dpiScaleY = m.M22;
width = (int)(ActualWidth * dpiScaleX);
height = (int)(ActualHeight * dpiScaleY);
}
var info = new SKImageInfo(width, height, SKImageInfo.PlatformColorType, SKAlphaType.Premul);
@ -79,7 +79,7 @@ namespace SkiaSharp.Views.WPF
// reset the bitmap if the size has changed
if (bitmap == null || info.Width != bitmap.PixelWidth || info.Height != bitmap.PixelHeight)
{
bitmap = new WriteableBitmap(width, height, dpiX, dpiY, PixelFormats.Pbgra32, null);
bitmap = new WriteableBitmap(width, height, 96 * dpiScaleX, 96 * dpiScaleY, PixelFormats.Pbgra32, null);
}
// draw on the bitmap