1
當檢查出的規格爲Image
class,我注意到有三種方式訪問width
和對象的height
:爲什麼圖像大小有重複的屬性?
- 使用
Height
/Width
屬性,它返回Int32
- 使用
Size
屬性,該屬性返回Size
即Height
/Width
爲Int32
- 使用
PhysicalDimension
屬性返回SizeF
,h asHeight
/Width
asfloat
這是什麼原因?他們保證永遠都是一樣的嗎?一個比另一個更受歡迎嗎?
第三個似乎有一定意義,因爲它可以是像素大小,如果對象是位圖或以毫米爲單位的大小(如果它是圖元文件)。