我在屏幕分辨率为input tap x y
的手机中使用此命令input tap 600 500
(720 x 1280
)如何转换x y
以便它在同一点上分辨率为1080 x 1920
的手机。感谢
答案 0 :(得分:1)
这个伪代码可以为您提供您正在寻找的值:
resolution_width = 720;
resolution_height = 1280;
input_x = 600;
input_y = 500;
target_width = 1080;
target_height = 1920;
percent_width = input_x / resolution_width;
percent_height = input_y / resolution_height;
output_x = target_width * percent_width;
output_y = target_height * percent_height;