Python 成像,调整 Turtle Graphics 窗口大小

发布于 2024-07-18 15:34:48 字数 79 浏览 5 评论 0原文

我的图像对于海龟窗口来说太大了。 我必须放大图像,因为每个点所需的文本都会重叠。

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芸娘子的小脾气 2024-07-25 15:34:48

听起来您已经绘制了图像,但它已经超出了窗口的边界,因此您需要将窗口放大才能看到整个图像。

要调整窗口大小:

设置(宽度 = 200,高度 = 200,startx = 无,starty = 无)

这将使您的输出窗口为 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:

setup( width = 200, height = 200, startx = None, starty = None)

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文