New Post: Library doesn't work properly
Thanks a lot for the solution. I haven't found it... I'll test it as soon as I can. Bye. Jymmy097
View ArticleNew Post: Library doesn't work properly
IT WORKS!!!!!! I used the code from smiron86 to access the image (I modified the function: now it requests an URI) and I enabled CLR exception from Debug -> Exception -> Enable ALL CLR Exception....
View ArticleNew Post: Changelog?
Hi, Is there any way to know the changes on the latest version? Thanks.
View ArticleNew Post: Changelog?
Most detailed way is the changeset log: https://writeablebitmapex.codeplex.com/SourceControl/list/changesets
View ArticleCreated Unassigned: Crash when using WriteableBitmapEx.Clear in parallel....
Using WriteableBitmapEx 1.0.8.0 from NuGet, I have some code where I'm creating a bunch of images in parrel. However, inside BitmapContext there's a static Dictionary used in the ctor - which leads to...
View ArticleCommented Unassigned: Crash when using WriteableBitmapEx.Clear in parallel....
Using WriteableBitmapEx 1.0.8.0 from NuGet, I have some code where I'm creating a bunch of images in parrel. However, inside BitmapContext there's a static Dictionary used in the ctor - which leads to...
View ArticleCommented Unassigned: Crash when using WriteableBitmapEx.Clear in parallel....
Using WriteableBitmapEx 1.0.8.0 from NuGet, I have some code where I'm creating a bunch of images in parrel. However, inside BitmapContext there's a static Dictionary used in the ctor - which leads to...
View ArticleCommented Unassigned: Crash when using WriteableBitmapEx.Clear in parallel....
Using WriteableBitmapEx 1.0.8.0 from NuGet, I have some code where I'm creating a bunch of images in parrel. However, inside BitmapContext there's a static Dictionary used in the ctor - which leads to...
View ArticleCommented Unassigned: Crash when using WriteableBitmapEx.Clear in parallel....
Using WriteableBitmapEx 1.0.8.0 from NuGet, I have some code where I'm creating a bunch of images in parrel. However, inside BitmapContext there's a static Dictionary used in the ctor - which leads to...
View ArticleCommented Unassigned: Crash when using WriteableBitmapEx.Clear in parallel....
Using WriteableBitmapEx 1.0.8.0 from NuGet, I have some code where I'm creating a bunch of images in parrel. However, inside BitmapContext there's a static Dictionary used in the ctor - which leads to...
View ArticleCommented Unassigned: Crash when using WriteableBitmapEx.Clear in parallel....
Using WriteableBitmapEx 1.0.8.0 from NuGet, I have some code where I'm creating a bunch of images in parrel. However, inside BitmapContext there's a static Dictionary used in the ctor - which leads to...
View ArticleCreated Unassigned: BitmapContext not thread safe [20143]
It seems the dictionaries used in the context class have some thread racing occurring when you have multiple WPF render threads (with own dispatchers). Some locks should fix it.
View ArticleCreated Unassigned: Issue with .FromContent(string) [20158]
Why does this not work?```WriteableBitmap temps = BitmapFactory.New(100, 20).FromContent("/Assets/colorscale.png");```Get this error:![Image](https://pbs.twimg.com/media/BS8PfBmCIAAaCnT.png)
View ArticleClosed Unassigned: Issue with .FromContent(string) [20158]
Why does this not work?```WriteableBitmap temps = BitmapFactory.New(100, 20).FromContent("/Assets/colorscale.png");```Get this error:![Image](https://pbs.twimg.com/media/BS8PfBmCIAAaCnT.png)Comments:...
View ArticleNew Post: Blit images of different sizes?
Hi, first thanks for the WriteablebitmapEx library, it has help me write a cool app for Windows Phone and now I'm porting it to Windows RT. I need to overlay an image on a background image, and am...
View ArticleNew Post: Blit images of different sizes?
Sure, you can do that, but the destination rectangle should fit the size of the source image (wbAddOnTop) since the source is smaller, so check that destRect parameter and use the destination X and Y...
View ArticleNew Post: Convolute / Invert changes WriteableBitmap DPI
Pretty simple problem here... I have a 72 DPI WriteableBitmap image. If I run a convolute call or invert the image what is returned is always a 96 DPI image. I need it to stay a 72 DPI image. Is there...
View ArticleNew Post: Blit images of different sizes?
I got it working, thanks for the tip! The code: writeableBmp_Bkgrnd.Blit( new Rect(wherex, wherey, wbAddOnTop.PixelWidth, wbAddOnTop.PixelHeight), wbAddOnTop, new Rect(0, 0, wbAddOnTop.PixelWidth,...
View ArticleNew Post: create polygon with float cordiantes
Is it possible to create a polygon with coordinates of the nodes as floats (not int[]). thanks
View Article