Python 成像,调整 Turtle Graphics 窗口大小
我的图像对于海龟窗口来说太大了。 我必须放大图像,因为每个点所需的文本都会重叠。
如何在 python 中调整窗口大小?
My image is too large for the turtle window. I had to enlarge the image because the text I need at each spot overlaps.
How do I Resize the window in python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您已经绘制了图像,但它已经超出了窗口的边界,因此您需要将窗口放大才能看到整个图像。
要调整窗口大小:
这将使您的输出窗口为 200X200(这对您来说可能太小,因此您需要使这些数字更大。)
这是 URL,其中我找到了这个信息。
TurtleDocs
It sounds like you have drawn an image, but it has gone outside the borders of the window, so therefore you need to make the window larger to see the entire image.
To resize the window:
This will make your output window 200X200 (which may be too small for you so you'll need to make those numbers larger.)
Here is the URL where I found this information.
TurtleDocs