writeablebitmap
How can i convert WriteableBitmap to jpg or some other common format?
I have one application that allows user to do various things like rotating and scaling an image and finally when the user clicks on save, the image should get saved on the server. Everything works out[详细]
2023-02-03 21:45 分类:问答Uploading a JPEG created from a WriteableBitmap without saving it to the users computer first
I have an application that allows users to upload videos to the server and part of the process is to create a thumbnail image on the client that will be used for the video when loaded on the server. I[详细]
2023-01-27 21:47 分类:问答How can I convert WriteableBitmap to BitmapImage?
BitmapImage bitmapImage = new BitmapImage(new Uri(\"arka_projects_as_logo.png\", UriKind.Relative)); Image uiElement = new Image() { Source = bitmapImage };[详细]
2023-01-21 20:46 分类:问答Silverlight 4 WriteableBitmap to Bitmap
This is my first Silverlight app and my first go at C#.I have a C# class library that I access from Silverlight using COM. The C# library has a method that takes a Bitmap as an argument, however from[详细]
2023-01-19 23:30 分类:问答Handling image load exception gracefully
I\'m loading user images using Silverlight 3. Everything works fine and I can set the file stream to a BitmapImage and it gets rendered OK.[详细]
2023-01-17 12:16 分类:问答Overlay two images using WriteableBitmap
I have got two images, say png and jpeg and I need to overlay them. In WPF it can be done by DrawingGroup (unavailable in SL). I guess it mig开发者_JAVA技巧ht be done[详细]
2023-01-10 01:16 分类:问答Does Silverlight 4's WriteableBitmap *really* cripple legit cross-domain access in the name of DRM?
In this thread from a year ago it\'s explained that WriteableBitmap will block read access when any part of it comes from an outside domain - say a free image server.[详细]
2023-01-09 06:48 分类:问答Resizing WritableBitmap
I have created a WriteableBitmap in Gray16 format. I want to resize this WriteableBitmap to my known dimention preserving the pixel format(Gray16).[详细]
2023-01-08 01:35 分类:问答WPF/WinForms/GDI interop: converting a WriteableBitmap to a System.Drawing.Image?
How can I convert a WPF WriteableBitmap object to a System.Drawing.Image? My WPF client app sends bitmap data to a web service, and the web service needs to construct a System.Drawing.Image on that e[详细]
2023-01-06 20:05 分类:问答How do I disable silverlight cross-domain content protection for WriteableBitmap
I have an Esri map in silverlight and I am trying to get a screenshot. However, I a开发者_StackOverflowm facing cross-domain content protection for writeablebitmap, saying \"Pixels are not accessible\[详细]
2023-01-03 06:00 分类:问答