嗨我有1130 * 2074分辨率的图像我在像素500,430处标记了一个点 我已经将其调整为1280 * 1024,如何更改像素位置,即像素500,430的新位置我知道基本像素大小受影响但仍然...
答案 0 :(得分:7)
newX = (500/1130)*1280;
newY = (430/2074)*1024;
一般来说:
newX = (currentX/currentWidth)*newWidth
newY = (currentY/currentHeight)*newHeight
答案 1 :(得分:4)
率!
new width = (500/1130) * 1280
new height = (430/2074) * 1024