WPF-旋转后查找图像的实际顶部和左侧
时间:2020-03-06 14:25:59 来源:igfitidea点击:
我正在使用WPF,并且在画布上有一张8.5" * 11"的纸图像。然后,我使用RotateTransform旋转图像,轴位于页面中间(即RotateTransformOrigin =" 0.5,0.5")。我如何在画布上找到图像四角的实际位置?
解决方案
http://au.answers.yahoo.com/question/index?qid=20080607033505AAF75UC
(这是几何方式)
_image.TranslatePoint(new Point(0, 0), _canvas);
这样可以吗