我想在 Inkcanvas 控件 WPF 中制作动画
我想在 Inkcanvas 控件中制作动画,例如绘制描边和描边路径,以便它可以在描边路径上移动,如何?
I want to make animation in Inkcanvas control like draw stroke and stroke path so it can move over the stroke path how ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先从 InkCanvas 中获取笔画。
然后通过在笔划上调用 GetGeometry() 从每个笔划获取 GeometryPath。
之后,您可以在路径动画中使用 GeometryPath
如果您想沿着笔画为铅笔/画笔设置动画,如果您想让铅笔与笔画保持垂直(或以某个角度),则需要一些额外的计算。
First grab the strokes from the InkCanvas.
Then get a GeometryPath from each stroke by calling GetGeometry() on the strokes.
After that you can use the GeometryPath in a Path animation
If you want to animate a pencil/brush along the stroke you'll need some extra calculations if you want to keep the pencil perpendicular (or at some angle) to the stroke.