Commented Unassigned: segments ends do not match exactly when using drawline...
I am using the drawline primitive to segments of polylines. Somehow the end point of each segment does not exactly match the startpoint of the next segment. This is of course only visible when zooming...
View ArticleCommented Unassigned: segments ends do not match exactly when using drawline...
I am using the drawline primitive to segments of polylines. Somehow the end point of each segment does not exactly match the startpoint of the next segment. This is of course only visible when zooming...
View ArticleNew Post: Is it possible to write text?
For Win 8.1 you want to use the RenderTargetBitmap and render a TextBlock to a bitmap. For Win 8.0 it's not possible in a good way.
View ArticleNew Post: Is it possible to write text?
8.0 was my concern. Too bad. Anyway, thanks for the reply. And thank you and the team for all the effort put into this project!
View ArticleNew Post: Merge two images into one
I want to merge two images into one. I read that I should use WriteableBitmapEx library and use blit method. Both of my images are Image type. So, should I first convert Image type to WriteableBitmap ?...
View ArticleNew Post: Merge two images into one
I have been trying to use Blit method like thisBitmapImage image1 = new BitmapImage(); BitmapImage image2 = new BitmapImage(); image1 = new BitmapImage(new Uri("/Images/pic1.jpg")); image2 = new...
View ArticleNew Post: Merge two images into one
Well, you have to use this extension library in the right way. Please see the source code samples. There are a few that show how it should be used. Even the project's start site has a sample.
View ArticleSource code checked in, #105345
* Added Windows 8.1 RenderTargetBitmap support via FromPixelBuffer. For details see http://kodierer.blogspot.com/2013/12/easy-render-writeablebitmapex-with.html
View ArticleUpdated Release: WriteableBitmapEx 1.0.9 (Oct 24, 2012)
This is the final version 1.0 of WriteableBitmapEx with Windows Phone 8 & 7, WPF, WinRT 8 & 8.1 Windows Store XAML and Silverlight supportAdded Windows 8.1 RenderTargetBitmap support via...
View ArticleReleased: WriteableBitmapEx 1.0.9 (Oct 24, 2012)
This is the final version 1.0 of WriteableBitmapEx with Windows Phone 8 & 7, WPF, WinRT 8 & 8.1 Windows Store XAML and Silverlight supportAdded Windows 8.1 RenderTargetBitmap support via...
View ArticleUpdated Release: WriteableBitmapEx 1.0.9 (Oct 24, 2012)
This is the final version 1.0 of WriteableBitmapEx with Windows Phone 8 & 7, WPF, WinRT 8 & 8.1 Windows Store XAML and Silverlight supportAdded Windows 8.1 RenderTargetBitmap support via...
View ArticleNew Post: Using WriteableBitmapEx in Metro C# UI ?
Hi , I'm building a metro ui c# and I 'm trying to use the WriteableBitmapEx. I have an ImageControl in my XAML where I load it from a webservice. Before I load it to the image control I want to be...
View ArticleNew Post: Using WriteableBitmapEx in Metro C# UI ?
See the samples for details. First use the FromStream method to load the image into a WriteableBitmap, then the method DrawRectangle or FillRectangle. Even this projects start page has some snippets...
View ArticleNew Post: Using WriteableBitmapEx in Metro C# UI ?
Hi rene , I cannot find code. Only thishttp://dl.dropboxusercontent.com/u/2681028/CodeplexData/WriteableBitmapEx/ShapeSample/TestPage.html
View ArticleNew Post: Using WriteableBitmapEx in Metro C# UI ?
Ignore my previous post. Found it in the source code. thank you rene
View ArticleNew Post: Draw a rectangle over an image
Hi , I'm trying to use the library in a Metro UI C# app. I have an Image control filled with an image and I'm trying to draw a red rectangle in some x,y coordinates. I have used so far from the samples...
View ArticleNew Post: How to use writeablebitmapex for windows8 store app (c# metro) on...
Hi all, I'm trying to use the lib i used on a windows phone 8 app where i appreciated it... But it seems that the project doesn't load the lib and so when i try to write the following code: Image...
View ArticleNew Post: How to use writeablebitmapex for windows8 store app (c# metro) on...
The WinRT version of the WriteableBitmap doesn't provide a .Render method, Look into the RenderTargetBitmap class. See this recent blog post for more...
View ArticleNew Post: save PNG (transparent picture)
Thanks for the very helpful extension! I've been working with trying to save a WriteableBitmap to a PNG and this was just the thing. I did find what I think is a bug in the implementation. I'm using...
View Article