2011-03-23 171 views

回答

2

您可以將其轉換爲BitmapSource然後訪問這些屬性。

if (theImage.ImageSource is BitmapSource) 
{ 
    BitmapSource bitmap = (BitmapSource)theImage.ImageSource; 
    int width = bitmap.Width; 
} 

Here is more info on the BitmapSource class.

+0

將是獲得圖像的大小,因爲它是在它的壓縮形式? – tweetypi 2011-03-23 03:27:41

+0

試一試,看看屬性。按「大小」你是指字節或維度? – 2011-03-23 12:56:01