【发布时间】:2025-11-29 03:45:01
【问题描述】:
当我在图像控件中显示图像时,我试图旋转它。目前图像显示如下:
我想将它向右旋转 90 度。 我当前的代码如下所示:'
Image {
id: imagePhoto
anchors.fill: parent
width: parent.width
height: parent.height
transform: Rotation{
id: rotateImagePhoto
angle: 0
origin.x: 0
origin.y: 0
}
}
所以我试着用角度来玩:
transform: Rotation{
id: rotateImagePhoto
angle: 90
origin.x: 700
origin.y: 700
}
正确显示:
我不明白为什么我必须将这些值用于 x/y。 我看过site之后的那个,但我不明白。
【问题讨论】: