2010-11-07 95 views
1

我在這裏有一張寬度爲2008px的照片。如果我讀這幅畫使用WPF驗證碼:WPF中錯誤的照片尺寸

  byte[] baSource = File.ReadAllBytes(strFileName); 
     using (Stream streamPhoto = new MemoryStream(baSource)) 
     { 
      BitmapFrame bfPhoto = ReadBitmapFrame(streamPhoto); 
      Console.WriteLine(bfPhoto.Width);  } 

它告訴我的圖片是52607,9686523093px寬度。我不明白爲什麼。 (同爲heigtht)

回答