Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我必须通过媒体 .show() 拍摄图像。但图像无法正确缩放。请帮助我,我没有找到任何解决方案。
在屏幕上显示图像后,您可以使用:
image:scale(xscale, yscale)
或者
image.xScale = scale image.yScale = scale
调整图像大小以适合您需要的区域。什么“比例”取决于你想要做什么,但假设你想在屏幕上显示整个图像:
scale = display.contentWidth / image.width image.xScale = scale image.yScale = scale
或类似的东西。