Closed Issue: Bug in Crop when width/height is same as the source...
When using the .Crop function with the same width (or height) as the source width (or height) , the returned result is one pixel smaller. Dim img As New WriteableBitmap(100, 100)Dim img2 As...
View ArticleClosed Issue: DrawLine is not working correctly for boundary points [14941]
The DrawLine method is not drawing all the points between the starting (x,y) point and the ending (x2,y2) points. For example you can create a new WriteableBitmap having (10,10) size and try to draw...
View ArticleClosed Feature: Add Convolute method [14796]
Add the Convolute method as suggested herehttp://writeablebitmapex.codeplex.com/Thread/View.aspx?ThreadId=236374&ANCHOR#Post528218 Todo:The alpha value should be preserved. Use rectangular array as...
View ArticleClosed Task: Windows Phone release [14361]
Starting with version 1.0 a ready-to-use WP7 built should be provided.
View ArticleClosed Issue: GetPixel Bug? [14151]
I think I found a bug in GetPixel, there are some casts missing for retrieving the colour components. You should be able to reproduce the issue by looping over the pixels and doing...
View ArticleClosed Feature: Flip methods [13816]
Implement FlipHorizontal and FlipVertical methods.
View ArticleClosed Issue: Bug on WriteableBitmapExtensions.cs [13563]
At line 63, actual code: int h = bmp.PixelWidth; Right code: int h = bmp.PixelHeight;
View ArticleClosed Feature: 90° Rotate methods [13362]
To make the transformation methods complete, a Rotate method should be added with support for 90° steps.
View ArticleClosed Issue: Clip DrawEllipse at boundaries [12552]
See [discussion:208643]http://writeablebitmapex.codeplex.com/Thread/View.aspx?ThreadId=208643
View ArticleClosed Feature: Add parametric Curve method [11054]
Implement a DrawBezier() and DrawCurve() method to support parametric curves / splines.
View ArticleClosed Feature: Add Fill methods [11053]
Implement various Fill*() methods as addition to the Draw*() methods like FillEllipse(), FillRect(), ...
View ArticleNew Post: Resizing Image distorts its pixels around corners
Hi! I needed to resize an image so I used following code: WriteableBitmap img2 = new WriteableBitmap((int)width, (int)height); img2 = img.Resize((int)width, (int)height,...
View ArticleNew Post: Saving Image without change a pixel colors
Hello Admin, First, I thanks for this library.. That's a wonderful library to get and set pixel image. Now I in reasearch about image processing and I using this library, but I have a problem when save...
View ArticleReopened Feature: Add parametric Curve method [11054]
Implement a DrawBezier() and DrawCurve() method to support parametric curves / splines.
View ArticleReopened Feature: Add Fill methods [11053]
Implement various Fill*() methods as addition to the Draw*() methods like FillEllipse(), FillRect(), ...
View ArticleNew Post: getting started tutorials
Hello Everyone, Thanks for providing such great library. I come across to this library today and wanted to start using all the functionality provided by library. But due to lack of documentation I...
View ArticleNew Post: getting started tutorials
On the homepage of this project you can find code snippets, links to more posts and in the source code repository are quite a few samples. It's the easiest to use a sample project and build on top of...
View ArticleNew Post: getting started tutorials
I am confused with real use of this library. Why we should use this library? Can you please shed more light in scenarios where we should use this library.
View ArticleClosed 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.Comments: I just spent some time to verify it and the most...
View ArticleSource code checked in, #101183
* Renamed Xna dependent class to avoid compiler naming conflicts
View Article