MSDN 上的 ImageSource 类错误?
从 MSDN 上 ImageSource 类的定义中我不清楚这意味着什么:
表示具有宽度、高度和 ImageMetadata 的对象类型,例如 BitmapSource 和 DrawingImage。
这是一个抽象类,DrawingImage 和 BitmapSource 都派生自 ImageSource,它们不是元数据的一部分。
I am unclear of what this means from the definition on ImageSource class on MSDN:
Represents a object type that has a width, height, and ImageMetadata such as a BitmapSource and a DrawingImage.
This is an abstract class, DrawingImage and BitmapSource both derive from ImageSource, they are not part of the metadata.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是关联性的问题:
即
such
不属于ImageMetadata
。I think it's a matter of associativity:
i.e. the
such as
does not belong to theImageMetadata
.