The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
42 views

Converting FileStream to WriteableBitmap to JPEG to Byte Array for SSRS

I'm trying to save an Image to SQL Server so SSRS can read it. I need to convert to WriteableBitmap (and possibly JPEG?) so I can make changes to the image size before saving. However, when I try to ...
0
votes
0answers
33 views

Saving print screen as jpg windows 8

I've managed to get the contents of the clipboard into a WriteableBitmap. Then I display it on the screen: var picker = new FileSavePicker(); // DataPackage dataPackage = new DataPackage(); // ...
0
votes
2answers
55 views

Creating an object only once and updating

I'm kind new to c#. I have this code: public static BitmapSource FromNativePointer(IntPtr pData, int w, int h, int ch) { System.Windows.Media.PixelFormat format = ...
1
vote
1answer
22 views

System.IndexOutOfRangeException when calling GetPixel() on a WriteableBitmap

private void selectColor_ManipulationDelta(object sender, ManipulationDeltaEventArgs e) { xMove += e.DeltaManipulation.Translation.X; yMove += e.DeltaManipulation.Translation.Y; ...
0
votes
1answer
70 views

C# Pixel by Pixel Color Conversion WriteableBitmap => PNG Black only to Color with Transparency

I am working on a silverlight application, where all my icons are PNGs. The color of all these icons is black, or rather black to gray, depending on the alpha value. Every PNG has a transparent ...
1
vote
1answer
110 views

Create screenshot with app bar WP8

In my application there is a possibility to create screenshot of current view. I implement it with WriteableBitmap class. For example: var frame = Application.Current.RootVisual as ...
-2
votes
1answer
65 views

image WriteableBitmap image .Pixels The field, constructor or member 'Pixels' is not defined?

let image = WriteableBitmap(100, 100, 300.0, 300.0, Media.PixelFormats.Bgra32, null); let pixel = image.Pixels Error 2 The field, constructor or member 'Pixels' is not defined ...
1
vote
1answer
81 views

The fastest way to convert canvas to the writeablebitmap in WPF?

I currently have one writeablebitmap image and canvas with drawings and I want to send the images to the peer.In order to reduce the bandwidth, I would like to convert canvas to the writeablebitmap, ...
2
votes
1answer
171 views

Windows Phone 8: How can I render an invisible Map to a bitmap?

Here's what I have so far: const int imgSize = 210; Map tempMap = new Map { Width = imgSize, Height = imgSize }; // ... adding some layers, setting the view Size size = new Size(imgSize, imgSize); ...
0
votes
1answer
59 views

silverlight 5: force grid being in sync before screen-capture via writeablebitmap

In silverlight 5: I have built a product configurator that also constructs a drawing via combination of image's and Rectangle,Ellipse,Polygon constructions. The configurator works fine and the ...
1
vote
0answers
56 views

Silverlight and ASP.net Bitmap converting issue

my application take snapshots using webcam and save them in a local folder. so i'm using following code to convert my Silverlight Snapshot to a byte array and send it through the Web Service. name of ...
0
votes
1answer
94 views

Double Buffering with vsync (in sync with refresh rate of screen) - C# windows forms

I've been trying to update the BMP of a PictureBox 60 times per second with a line pattern that changes for every update. What's happening is the image is being partially updated in between screen ...
0
votes
1answer
34 views

Crop With Padding

I need to crop an image specifying coordinates that may exceed the image's bounds. If the coordinates are off, appropriate padding is applied. Normally: +===============+ | Source Bitmap | | ...
2
votes
1answer
177 views

Prevent image clipping during rotation Windows Phone

I am using the WriteableBitmapEx extension method to rotate a WriteableBitmap. bi in the code is a WritableBitmap. The RotateFree method rotates the bitmap in any degree and returns a new rotated ...
0
votes
1answer
151 views

Create WriteableBitmap from resource in console application

I'm trying to create a WriteableBitmap from an Image on my hard drive using WriteableBitmapEx. I copied the code from the official page after adding the nuget package: WriteableBitmap writeableBmp = ...
0
votes
1answer
33 views

WriteableBitmapEx in console application?

I was wondering if it's possible to use the WriteableBitmap class / the WriteableBitmapEx framework in an ordinary C# console application? I have tried to add it via nuget and also included a using ...
0
votes
0answers
42 views

Dashed / Dotted polyline on WriteableBitmap

I want to draw Dashed line (actually Polyline but it also would work) on WriteableBitmap. But it seemed there is no of such method. Maybe i missed something? I tried ...
0
votes
1answer
56 views

Rectifiy image of DVD cover

I'm trying to get the cover image of a DVD as a rectangular image from a photo. Now as the cover on the photo is usually a bit skewed I need to rectify it programmatically. I've already removed most ...
0
votes
0answers
168 views

Trouble writing writeable bitmap into png C#

public class Filing { public void SaveFile(WriteableBitmap image) { byte[] data = new byte[image.BackBufferStride * image.PixelHeight]; image.CopyPixels(data, ...
0
votes
1answer
301 views

writeablebitmap always render image with black background

I have next code: var bmp = new WriteableBitmap((int)size.Width, (int)size.Height); bmp.Render(new Canvas(){Background = new SolidColorBrush(Colors.White)}, null); bmp.Invalidate(); return bmp; ...
0
votes
1answer
437 views

Manipulate WriteableBitmap Pixels

I'm trying to merge two images I have as WriteableBitmaps. I want to square each pixel value, add it to the other image and then take the 2nd root (+ check, if the value is above 255). As I had no ...
4
votes
3answers
312 views

Sobel operator & Convolution with WriteableBitmapEx

So I'm using WriteableBitmapEx for an app on Windows RT. I'm trying to implement edge detection on an image using the sobel operator. I have successfully applied both kernels for x and y detection ...
0
votes
3answers
696 views

How to create WriteableBitmap from BitmapImage?

I could create WriteableBitmap from pictures in Assets. Uri imageUri1 = new Uri("ms-appx:///Assets/sample1.jpg"); WriteableBitmap writeableBmp = await new WriteableBitmap(1, ...
6
votes
3answers
347 views

WriteableBitmap Memory Leak?

i am using the code below to create a live tile, based on an UI element. It renders the uiElement on a WriteableBitmap, saves the bitmap + returns the filename. This method is run in a windows phone ...
1
vote
1answer
267 views

X,Y coordinates for WriteableBitmap and GestureListener_Tap do not match - Windows Phone 8

I am creating a hidden object game and am trying to mark the object when found with an eclipse. I've manually saved the top left and bottom right coordinates of each picture which were obtained via ...
0
votes
2answers
361 views

WriteableBitmap.Savejpeg does not render grid text (image is OK)

I have a Grid in a user control: <Grid x:Name="LayoutRoot" Background="{StaticResource PhoneAccentBrush}"> <Image x:Name="imgBack" Opacity=".25" /> <Grid ...
0
votes
1answer
165 views

WriteableBitmapEx.DrawRectangle Thickness?

How do you change the thickness/weight for the rectangle outline drawn with the WriteableBitmapEx.DrawRectangle extension method? The code I use to draw the rectangle is: WriteableBitmap wbmp = new ...
0
votes
0answers
65 views

WriteableBitmap for Winforms

I'm reading about the WriteableBitmap class in WPF, in which you can change some pixels, and invalidate a certain region of the bitmap using AddDirtyRect(), and only that area will be send to the ...
0
votes
0answers
81 views

BitmapFactory FromContent Uri formatting

I'm trying to create a WriteableBitmap for a html img element in c#. This might sound hard, but I've got a Cordova plugin I'm making that can access an elements src attribute as a string. My problem ...
1
vote
1answer
155 views

Why do my images sometimes reload (and WriteableBitmaps disappear) on resume?

When I resume my app, sometimes it loses its images. I can reproduce this even in trivial apps. This manifests in two different ways, depending on where the image came from: If I did something like ...
3
votes
1answer
205 views

Setting line stroke thickness in WriteableBitmap DrawLine method

i am using WriteableBitmap to draw lines as WriteableBitmap writeableBmp=new WriteableBitmap(500,500); writeableBmp.DrawLineDDA(10, 20, 50, 70,myIntColor); But here i am not getting any method to ...
1
vote
0answers
307 views

rendering usercontrol live tile windows phone

Looks like I managed to solve it by calling UpdateLayout on my usercontrol before and after each measure and arrange calls, working good so far. if anyone has another solution please let me know I ...
1
vote
1answer
143 views

share writeablebitmap always failed

I want to share a writeablebitmap, but when I open the share target app, there's no image. Below is my code. private async void OnDataRequested(DataTransferManager sender, DataRequestedEventArgs e) ...
0
votes
2answers
757 views

How to create a writeablebitmap image from an image file in windows8

I want to load an image file from local disk to a writeablebitmap image, so I can let users to edit it. when I create a WriteableBitmap object, the constructor need pixelwidth and pixelheight ...
3
votes
2answers
311 views

How do I add watermark text to a bitmap in WinRT?

I would like to do something like this http://weblogs.asp.net/broux/archive/2011/02/08/silverlight-how-to-watermark-a-writeablebitmapimage-with-a-text.aspx. I am having a tough time getting this to ...
2
votes
0answers
145 views

Converting from Pbgra32 to Bgr32 PixelFormats using FormatConvertedBitmap

I am having trouble understanding how to use FormatConvertedBitmap to convert a WriteableBitmap I have from Pbgra32 to Bgr32. The application I'm building was initially using Bgr32, and I introduced ...
2
votes
1answer
869 views

How do I convert a WriteableBitmap object to a BitmapImage Object in WPF

How do I convert a WriteableBitmap object to a BitmapImage Object in WPF? This link covers silverlight, the process is not the same in WPF as the WriteableBitmap object does not have a SaveJpeg ...
0
votes
0answers
112 views

Drawing WriteableBitmap that changes

I have a controller class that returns some images as WriteableBitmap. I use that lib in my WPF app that should refresh the Image immediately. The problem is, nothing happens when I change its Source ...
3
votes
1answer
119 views

Data Binding To Instance Method

I have an application with a local database (SQL CE), and I want to bind a listbox to a table (Car). However, I can't save WriteableBitmap to my local database so I decided to transform the image to ...
0
votes
1answer
88 views

Converting Marshal.Copy Bitmap to Silverlight Equivalent

I am having a problem converting the following code snippet for an existing component into Silverlight. Bitmap bmp = new Bitmap(width, height); BitmapData bmpData = bmp.LockBits(new Rectangle(0, 0, ...
0
votes
1answer
952 views

conversion between bitmapimage and byte array in windows8

I write the code below to convert image to byte array and convert back later, but it doesn't work. Anyone can help? FileOpenPicker picker = new FileOpenPicker(); picker.ViewMode = ...
6
votes
4answers
834 views

Calculating the required buffer size for the WriteableBitmap.WritePixels method

How do I calculate the required buffer size for the WriteableBitmap.WritePixels method? I am using the overload taking four parameters, the first is an Int32Rect, the next is a byte array containing ...
0
votes
1answer
206 views

C# Console app - Bing Maps - how to save output

I can get a URI from Bing Maps but when I try to save the resulting file (eg, a .jpg) it is empty (eg, 1 x 1 size). I've got it working fine in a WPF app with event handling but how do I do it with a ...
0
votes
0answers
161 views

BitmapCache in WPF (or any other optimisation suggestions?)

So I am basically drawing many objects onto a Canvas in an ItemsControl in WPF. We are talking about 10,000 arcs and ellipses to for a network of nodes and connecting lines. I can pan and zoom ...
1
vote
1answer
242 views

WPF WriteableBitmap problems with transparency

First of all Ill explain what I try to do, just in the case that someone comes up with a better approach I need to blend too images using the "color" stile from photoshop (you know, the blending ...
0
votes
1answer
326 views

Changes to WriteableBitmap pixels don't update screen

I have a WriteableBitmap in a Windows Phone 8 application that is hooked up to an Image control. I'm looping through each row of the image and painting a row of pixels at a time asynchronously and ...
1
vote
1answer
125 views

How to catch color fault in WriteableBitmapEx GetColor WP7

I just read any image and could not get the correct colors. I've tried several images with several formats. Please advice how to receive the correct colors in WriteableBitmap.GetPixels() In the ...
0
votes
1answer
176 views

Silverlight: Using WriteableBitmap to Catch Pixels from an External URL Image Throws an Security Exception

I have several UIElements, including an Image (with an External URL image), and then I want to catch a thumbnail of these elements, so I use WriteableBitmap to catch the pixels for each UIElement. ...
2
votes
2answers
1k views

WinRT: how to save WriteableBitmap to localfolder

How to save a WriteableBitmap to localfolder using C# in WinRT?
0
votes
1answer
209 views

Not clear unsafe code in draw pixel method

Lately I got low level graphics programming job to do (implementing raster graphics algorithms). That's why I started to look for tools (classes) which would be helpful to draw primitives (lines, ...

1 2 3