WPF 路径与图像 png jpg
考虑一个在 Canvas
上绘制的由许多图形元素(和 Path
)组成的 Button
。 为什么使用 Path
和其他元素在该 Button
中构建图像比为其分配自定义 Bitmap
更好?
我知道一个优点,“路径是矢量图像”。 但如果我不打算缩放,为什么要使用它来代替我的自定义 .png、.ico 和 .jpg 图像?
Consider a Button
composed of many graphical elements (and Path
) drawn on Canvas
. Why is it better to use the Path
and other elements to build an image in that Button
than assigning a custom Bitmap
to it?
I know one advantage, "the path is a vector image". But if I'm not planning to zoom, why should I use it in place of my custom .png, .ico and .jpg images?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用路径可以减少按钮在不同 DPI 上看起来模糊的情况,而位图经常会出现这种情况。
Using a Path makes it less likely your button will look blurry on different DPIs, which often happens with bitmaps.