Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
koszeggy committed Jan 26, 2022
1 parent 5b4ac55 commit d06831b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ For example, this is how you can create a managed accessor for a `WriteableBitma
// Though naming is different, PixelFormats.Pbgra32 is the same as PixelFormat.Format32bppPArgb.
var bitmap = new WriteableBitmap(width, height, dpiX, dpiY, PixelFormats.Pbgra32, null);

// creating the managed bitmap data for writeableBitmap:
// creating the managed bitmap data for WriteableBitmap:
using (var bitmapData = BitmapDataFactory.CreateBitmapData(
bitmap.BackBuffer,
new Size(bitmap.PixelWidth, bitmap.PixelHeight),
Expand Down

0 comments on commit d06831b

Please sign in to comment.