New Post: AccessViolationException when accessing pixel color (GetPixel())
You're right, thank you. I changed the code and now it works well.
View ArticleNew Post: WriteableBitmapExtensions is ambiguous in the namespace...
Hi.. Just started playing with your extensions but I get the error above when I add a blending mode to the Blit function. If I search for it in object browser I see two WriteableBitmapExtensions...
View ArticleNew Post: WriteableBitmapExtensions is ambiguous in the namespace...
Try a full qualified name with the namespace for blend mode.
View ArticleNew Post: Error while reading IRandomAccessStream to Byte array
I am getting the following error while reading IRandomAccessStream to Byte Array The operation attempted to access data outside the valid range. Can any one help me please?
View ArticleNew Post: WriteableBitmapExtensions is ambiguous in the namespace...
Can you please try one of the Blit samples you can download from the source code repo? They use BlendMode and it works.https://writeablebitmapex.codeplex.com/SourceControl/BrowseLatest
View ArticleNew Post: Error while reading IRandomAccessStream to Byte array
Use the FromStream method.https://writeablebitmapex.codeplex.com/discussions/440934
View ArticleNew Post: Rendering ink strokes into canvas element of datatemplate in gridview
Hi Experts, I am trying to render the strokes into the canvas element of a datatemplate in gridview. Can any one help me please? Thanks in advance.
View ArticleCreated Issue: Blit with alpha channel does not work as expected [19679]
The issue reported here:http://writeablebitmapex.codeplex.com/discussions/390628was fixed on ChangeSet 93605 but now it is broken again.
View ArticleNew Post: save PNG (transparent picture)
Hi, Can you please advise how I should use the code, such that when I save a png file on a windows 7 machine, I can open the png file in any image editor on the machine. Currently I can save...
View ArticleClosed Issue: Do not use restricted XNA APIs (e.g. MediaLibrary) to allow use...
The "Marketplace test kit" in Visual Studio fails when referencing the library in the background agent or one of its referenced assemblies[ERROR] : Unsupported API cannot be used by a background agent....
View ArticleClosed Issue: FillRectangle throws IndexOutOfRangeExceptions [16810]
... when negative coordinates are passed. This is the bug introduced in the latest version, the stable version works well.
View ArticleClosed Issue: Nuget Package with strong Name [16636]
Could you Sign your assembly on nuget. Thanks
View ArticleClosed Issue: DrawPolyline points not connected [16201]
As you can see in the attached file "polyline-points-not-connected.PNG" (as well as in the second example) the line between certain points inserted into the DrawPolyline aren't always connected. This...
View ArticleClosed Issue: FillRectangle draws a one-pixel line at the edge when it is out...
bmp.FillRectangle(-10, 10, -5, 20, Colors.Red) produces a vertical line (0, 10)-(0, 20). Same applies to all other edges as well.
View ArticleClosed Issue: FillEllipseCentered hangs when radius is zero [16074]
In that case, I would simply expect nothing to be drawn :)
View ArticleClosed Feature: Make available as NuGet Package [15697]
Nothing more to say... would be great if the package would be available as a public NuGet package for easier / quicker installation (yep, I'm this lazy! ;-) ).
View ArticleClosed Issue: FillRectangle off-by-1 [15515]
FillRectangle is drawing 1 extra pixel in the top right corner WriteableBitmapFillExtensions.cs Line 85: for (int x = startYPlusX1; x <= endOffset; x++) Proposed fix: for (int x = startYPlusX1; x...
View ArticleClosed Feature: Free Rotate Methods [15214]
In addition to the 90° fixed methods, support for any angle should be added.Follow up to http://writeablebitmapex.codeplex.com/workitem/13362
View Article