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.
我想创建一个可以读取和显示“地图文件”的 GUI。地图文件只是包含一长串整数的文本文件,代表海拔高度。用户最初应该能够浏览文本文件,点击“显示”或其他内容,生成彩色图像
我试图决定用什么语言和库来实现这一点。python + tkinker 是这样做的吗?这听起来像一个难题吗?
感谢您的任何意见!
您可以通过在 tkinter 画布上绘图来做到这一点。但是,为了更轻松地生成漂亮的图,您还可以在 tkinter 应用程序中显示 matplotlib 图。
例如,参见matplotlib 库中的embedding_in_tk.py和embedding_in_tk2.py。