如何缩放 JPanel
我要做一个俄罗斯方块克隆。为了使它看起来更真实,我想在 160x144 的区域中绘制它,但将其缩放到 640x576(缩放 4 倍),以便每个像素看起来像 4 个像素。我该怎么做?
I am going to make a Tetris clone. In order to make it look more authentic, I want to draw it in a 160x144 area, but scale it to a 640x576 (scaled 4x), so that every pixel looks like 4 pixels. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用简单、直接的 Graphics 和 Graphics2D 对象,那么绘制一个简单的正方形可能就足够了。
我会写一个方法来为自己做到这一点,以使事情变得更容易,即
If you're using simple, straightforward Graphics and Graphics2D objects, then drawing a simple square may suffice.
I'll write a method to do this for myself to make things easier, i.e.