diff --git a/src/Windows/Perspex.Direct2D1/Media/Imaging/BitmapImpl.cs b/src/Windows/Perspex.Direct2D1/Media/Imaging/BitmapImpl.cs index 4572c09850..db3522945c 100644 --- a/src/Windows/Perspex.Direct2D1/Media/Imaging/BitmapImpl.cs +++ b/src/Windows/Perspex.Direct2D1/Media/Imaging/BitmapImpl.cs @@ -67,12 +67,12 @@ namespace Perspex.Direct2D1.Media /// /// Gets the width of the bitmap, in pixels. /// - public int PixelWidth => WicImpl.Size.Height; + public int PixelWidth => WicImpl.Size.Width; /// /// Gets the height of the bitmap, in pixels. /// - public int PixelHeight => WicImpl.Size.Width; + public int PixelHeight => WicImpl.Size.Height; /// /// Gets the WIC implementation of the bitmap.