vote up 2 vote down star

Hi guys

Link this post I want to be able to read an image files height and width without reading in the whole file into memory.

In the post Frank Krueger mentions there is a way of doing this with some WPF Imaging classes. Any idea on how to do this??

Cheers Anthony

flag

66% accept rate

1 Answer

vote up 2 vote down check

This should do it:

var bitmapFrame = BitmapFrame.Create(new Uri(@"C:\Documents and Settings\All Users\Documents\My Pictures\Sample Pictures\Winter.jpg"), BitmapCreateOptions.DelayCreation, BitmapCacheOption.None);
var width = bitmapFrame.PixelWidth;
var height = bitmapFrame.PixelHeight;

HTH, Kent

link|flag
Cheers I'll give thiis a good and let you know how I go. – vdhant Apr 24 at 11:30
Works a treat, thanks. – vdh_ant Apr 29 at 1:09
You beat me to it Kent. :-) – Frank Krueger Nov 12 at 16:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.