Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
1answer
15k views

How can I get a BitmapImage from a Resource?

My assembly includes an image with BuildAction==Resource. I want to obtain a BitmapImage from this embedded resource. I can load a BitmapImage from file like this: var bitmap = new BitmapImage(new ...
15
votes
2answers
447 views

How can I display a Progressive JPEG in WPF?

How to display a progressive JPEG as it loads from a web URL? I am trying to display a Google Maps image in a image control in WPF, but I want to keep the advantage of the image being a progressive ...
6
votes
2answers
191 views

c# Uri loading non deterministic?

I am trying to load some BitmapImages from files held on the file system. I have a dictionary of keys and relative filepaths. Unfortunately the Uri constructor seems non deterministic in the way that ...
5
votes
4answers
355 views

Does SVG support embedding of bitmap images?

Is an SVG image purely vectorial or can we combine bitmap images into an SVG image ? How about transforms applied on the bitmap images (perspective, mappings, etc.) ? Edit: Images may be included in ...
5
votes
2answers
9k views

Creating WPF BitmapImage from MemoryStream png, gif

I am having some trouble creating a BitmapImage from a MemoryStream from png and gif bytes obtained from a web request. The bytes seem to be downloaded fine and the BitmapImage object is created ...
4
votes
2answers
695 views

Silverlight: BitmapImage from stream throws exception (Catastrophic failure (Exception from HRESULT: 0x8000FFFF (E_UNEXPECTED)))

I need to dynamically load many (sometimes hundreds) of thumbnail images. For performance reasons I need to do this in a limited number of requests, I am using a single request/response for testing. ...
4
votes
1answer
2k views

Problem with binding property typeof BitmapImage

I have problem with update listbox from view model class. I use Caliburn Micro framework. My scenario is here: I bind property of type bindableCollection on listbox: Code from view model: private ...
4
votes
3answers
610 views

WPF BitmapImage and TIFF with CMYK + Alpha

I am using this code snippet to load various image files: BitmapImage bitmap = new BitmapImage (); bitmap.BeginInit (); bitmap.UriSource = new System.Uri (path); bitmap.CreateOptions = ...
4
votes
3answers
3k views

How to render bitmap into canvas in WPF?

I've subclassed Canvas so that I can override its Render function. I need to know how I can load a bitmap in WPF and render that to the canvas. I'm completely new to WPF and I haven't found any ...
4
votes
3answers
4k views

Can I get a byte[] from a BitmapImage in Silverlight?

I'm trying to pass some representation of an image back and forth between Silverlight and a WCF service. If possible I'd like to pass a System.Windows.Media.Imaging.BitmapImage, since that would mean ...
3
votes
4answers
319 views

BitmapImage to byte[]

I have a BitmapImage that I'm using in a WPF application, I later want to save it to a database as a byte array (I guess it's the best way), how can I perform this conversion? Or, alternatively, is ...
3
votes
2answers
326 views

BitmapImage in WPF does lock file

I use: Dim bmi As New BitmapImage(New Uri(fiInfo.FullName, UriKind.Absolute)) bmi.CacheOption = BitmapCacheOption.OnLoad this does not Use OnLoad And file still is locked to overwrite on harddisk. ...
3
votes
1answer
198 views

WPF BitmapImage Memory Usage

I am trying to convert a byte array of an image to BitmapImage to bind to a button. public static BitmapImage GetBitmapImageFromByteArray(byte[] p_Image) { try { ...
3
votes
1answer
82 views

How to check BitmapImage instance is initialized or not? WPF

I try to use instances of BitmapImage class in circle but sometimes I receive error messages that BitmapImage is not initialized. How to check that BitmapImage is initialized before use it?
3
votes
2answers
435 views

How to save the client area of a child Window to a Bitmap file?

I have created a windows application using core WIN32 and VC++. In my parent window I have a child window and two buttons i.e. save and send, when user clicks the save button I want the savefileDialog ...
3
votes
2answers
406 views

How do I handle a huge tif in WPF?

I have an 8bit tiff thats 14406x9606 pixels that when loaded via BitmapImage throws a System.OutOfMemoryException. As a full depth bitmap its about 400 megs in size. Is there a way to partition the ...
3
votes
2answers
334 views

Silverlight ComboBox bound to IEnumerable<BitmapImage> where images are downloaded from server

I am having an issue with binding a ComboBox to an IEnumerable<BitmapImage>, where the images are stored on the server and downloaded on demand. At the time the binding actually takes place, ...
3
votes
3answers
1k views

error in my byte[] to WPF BitmapImage conversion?

I'm saving a BitmapImage to a byte[] for saving in a DB. I'm pretty sure the data is being saved and retrieved accurately so it's not an issue there. On my byte[] to BitmapImage conversion I keep ...
3
votes
1answer
914 views

Dynamically crop a BitmapImage object

I have a BitmapImage object that contains an image of 600 X 400 dimensions. Now from my C# code behind, I need to create two new BitmapImage objects, say objA and objB of dimensions 600 X 200 each ...
3
votes
1answer
521 views

How to get Silverlight's bitmapimage pixel height before it is drawn to canvas?

I have an Image, which I need to scale based on the image's pixel values. When I create the bitmapImage, the pixels (height and width) are both 0. Is there a way to get height and width before the ...
3
votes
1answer
791 views

Proper way to dispose a BitmapSource

How are you supposed to dispose of a BitmapSource ? // this wont work because BitmapSource doesnt implement IDisposable using(BitmapSource bitmap = new BitmapImage(new Uri("myimage.png"))) { }
3
votes
2answers
12k views

How to save BitmapImage / WriteableBitmap using SaveFileDialog in Silverlight 3.0?

How can a WriteableBitmap from Silverlight be Saved onto the File System, I am unsure what to do with the FileStream to make this work, it can be in Bitmap, PNG, Jpeg format etc, as long as a ...
2
votes
2answers
59 views

Need serialize bitmap image silverlight

I need serialize custom class with bitmapImage(tagged by xmlIgnore right now). I'm using xmlSerialization, but I think thats bad.Do you have some ideas how can I serialize my class??Probably you can ...
2
votes
1answer
78 views

disposing generic list of bitmapimages

How can i dispose all the images in a generic list in WPF? Here is my try: //piclist is a global variable pointing to a folder on harddrive foreach (string s in this.piclist) { ...
2
votes
0answers
195 views

Silverlight 4 BitmapImage bug : ImageOpened not invoked after SetSource()

This seems like a serious bug : private void LayoutRoot_Drop(object sender, DragEventArgs e) { if ((e.Data != null) && ...
2
votes
1answer
525 views

Creating a BitmapImage WPF

I have a ushort[] containing image data I need to display on screen, at the minite I am creating a Windows.System.Drawing.Bitmap, and converting this to a BitmapImage but this feels like a slow ...
2
votes
4answers
2k views

BitmapSource to BitmapImage

I need to parse the content of Clipboard.GetImage() (a BitmapSource) to a BitmapImage. Does anyone knows how can this be done?
2
votes
2answers
360 views

How can I render a monochrome bitmap in color in WPF?

Back in Win32 days, if I had a monochromatic bitmap, which is for all intents and purposes just a bitmap mask, I could render that bitmap onto a DeviceContext. What would happen is every pixel where ...
2
votes
0answers
126 views

Why does BitmapImage RequestCachePolicy get ignored?

I'm finding that setting the RequestCachePolicy property on BitmapImage has no effect on how the bitmap is downloaded when an Image's Source is set to this instance of BitmapImage. For example, if I ...
2
votes
2answers
1k views

Synchronously download an image from URL

I am trying to do a simple thing but I can't ... I just want to get a BitmapImage from a internet URL, but my function doesn't seem to work properly, it only return me a small part of the image. I ...
2
votes
1answer
3k views

byte[] to BitmapImage in silverlight

For the purpose of a game, I need to serialize some pictures in a binary file through a WPF application, using bitmapEncoder and its child classes. But these class are not available in silverlight, ...
2
votes
4answers
652 views

Wpf: Image Control does not support .TGA files

In my application I am using Images, these images can be .tga(Targa Graphic) file as well, when I am creating instance of BitmapImage using .tga file, it throws exception saying "No imaging component ...
1
vote
2answers
40 views

ASP.NET Throws Win32Exception when creating BitmapImage, cannot find file specified

I have been developing a book viewing website that takes rather large images (upwards of 77+ megapixels) and scales them down before serving the image. It basically does the following algorithm: If ...
1
vote
2answers
105 views

How to Copy Bitmap.Image in c#

I have some troubles with saving a image from memorystream. Here is my code: MemoryStream ms = new MemoryStream(onimg); if (ms.Length > 0) { Bitmap bm = new Bitmap(ms); returnImage = ...
1
vote
1answer
41 views

BitmapImage spark in Flex 4.5

i want to migrate my application from Flex 3.6 to Flex 4.5. Let say i have this code in Flex 3.6 : <mx:Image id="lImage" source="@Embed(source='assets/loading.swf')" /> Further, ...
1
vote
1answer
89 views

Corrupted File when I save a Bitmap image on HardDrive

I have a Silverlight Out-of-browser application and I want to save pictures on a specified directory. In the application, I have the picture loaded in a BitmapImage and I wish to save it on the ...
1
vote
1answer
104 views

How to get BitmapSource from BitmapImage?

How to get BitmapSource from BitmapImage? Or how to convert BitmapImage to BitmapFrame directly? It seems to me that if I have BitmapSource I could use BitmapFrame.Create and finally get BitmapFrame ...
1
vote
1answer
210 views

How to load a BitmapImage in MetroUI Dynamically

I've been experimenting with Windows 8 and Metro UI, I've written a perfectly reasonable load of a bitmap image, but it doesn't seem to be loading, any help is appreciated. Public Sub New(Image As ...
1
vote
1answer
81 views

About generating sound waveform in an ActionScript 3 Bitmap

I am generating Bitmap object to show the sound waveform of a loaded sound. The bitmap is 1024x120 and after it has been generated I shrink its size to 655x120. My problem is the player that loads the ...
1
vote
2answers
345 views

Loading image from cache using BitmapFactory.decodeStream() in Android

UPDATES: Even if i don't retrieve images from cache, i tried to retrieve via Drawable where i stored all the 18 images in the "drawable-mdpi" folder. Still, a blank screen was display. I was able to ...
1
vote
1answer
303 views

Android: How to: draw shapes and text in the still image (png file) then put into ImageView?

Here's my current code: public class MallMapActivity extends Activity { private final static String tag = "MallMapActivity"; private ImageView iv; private final static String FLOOR = "F"; ...
1
vote
2answers
144 views

Rotate a BitmapImage

I want to rotate a bitmap image I wrote some code and it work TransformedBitmap TempImage = new TransformedBitmap(); TempImage.BeginInit(); TempImage.Source = MyImageSource; // MyImageSource of ...
1
vote
2answers
86 views

How to display Grayscale image after changing the indexing in C#

I have a Grayscale image which I am pulling from the DB (it is in Bytes). I want to draw some boxes using graphics object on it and then display this image. This is what was coded before - public ...
1
vote
1answer
90 views

Using BitmapImage in Silverlight, losing my DPI info

I'm trying to load a high-resolution (300 dpi) image into a BitmapImage object (which will be displayed in an Image control nested within a Canvas). The problem is that when I save the image to the ...
1
vote
1answer
163 views

How to convert captured bitmap to 8 bit image as gray scale?

I am trying to convert the camera captured image to 8 bit image. And that should be grayscale image. I searched in forums but could able to find the way to convert to 8 bit image. Any help or ...
1
vote
1answer
77 views

Copying an adorned image to the clipboard

I have a System.Windows.Controls.Image which is decorated with a couple of adorners. Now I want to copy the adorned image to the clipboard. So far I have this line of code: ...
1
vote
0answers
269 views

Convert WPF Control to BitmapSource

This is kind of a two part question- First, why doesn't this code work? Canvas canvas = new Canvas { Width = 640, Height = 480 }; System.Windows.Size size = new System.Windows.Size( ...
1
vote
3answers
199 views

Why does WPF make working with images so much more difficult?

I used to be able to do so very much with just the Bitmap and Graphics objects. Now that I've been using WPF the only thing I seem to be able to do is load an image and show it and make it dance ...
1
vote
2answers
329 views

Rendering WPF Visual Object as Image Yields Solid Black Image

In a C#/WPF application, I have a DataChart object that I need to save to an image. Currently, the object is added to a Fixed Document and correctly displays on that Fixed Document by using the ...
1
vote
1answer
740 views

WP7 set Image component height/width to BitmapImage height/width

I am trying to set an Image component source to a BitmapImage: However, the Uri newUri = new Uri("images/" + filename, UriKind.Relative); Image newImage = new Image(); BitmapImage bmp = new ...

1 2 3 4