vote up 0 vote down star

Is there a way to get the original image size in terms of width and height of a png image that is loaded in an image control?

flag

What size do you mean? File size? Width Height? – Graeme Bradbury Apr 14 at 13:13
Width and height (Updated the question) – Drahcir Apr 14 at 13:35

2 Answers

vote up 0 vote down

How about - in your code behind file (.xaml.cs) reload the image into a new image control and take the width and height from that?

Something like this:

System.Windows.Controls.Image img = new System.Windows.Controls.Image();
string UriValue = HtmlPage.Document.DocumentUri.AbsoluteUri + imagefilename;
img.SetValue(System.Windows.Controls.Image.SourceProperty, 
        new System.Windows.Media.Imaging.BitmapImage(new Uri(UriValue)));
double imagewidth = img.Width;
link|flag
Tried that but doesnt find the sizes straight away – Drahcir Apr 19 at 19:36
vote up 0 vote down check

I have downloaded silverlight 3 beta which provides the event ImageOpened which has arguments that can show the actual image dimentions

link|flag

Your Answer

Get an OpenID
or

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