将画布内容转换为图像
将 Tkinter 画布的内容转换为图像可以进行进一步的操作,例如旋转、缩放、和坐标调整。要实现此转换,可以使用多种方法。
PostScript 生成
一种方法是生成可由 ImageMagick 或 Ghostscript 等外部工具进一步处理的 PostScript 文档。下面是一个示例:
<code class="python">from Tkinter import * root = Tk() cv = Canvas(root) cv.create_rectangle(10,10,50,50) cv.pack() root.mainloop() cv.update() cv.postscript(file="file_name.ps", colormode='color') root.mainloop()</code>
使用 PIL 并行绘图
另一种方法涉及在画布和 PIL 图像上并行绘制相同的图像。这允许在 PIL 端进行图像处理和保存,同时保持可见的画布。以下是基于“保存 Tkinter Canvas 绘图 (Python)”中提到的方法的示例:
<code class="python">from Tkinter import * import Image, ImageDraw width = 400 height = 300 center = height//2 white = (255, 255, 255) green = (0,128,0) root = Tk() # Tkinter create a canvas to draw on cv = Canvas(root, width=width, height=height, bg='white') cv.pack() # PIL create an empty image and draw object to draw on # memory only, not visible image1 = Image.new("RGB", (width, height), white) draw = ImageDraw.Draw(image1) # do the Tkinter canvas drawings (visible) cv.create_line([0, center, width, center], fill='green') # do the PIL image/draw (in memory) drawings draw.line([0, center, width, center], green) # PIL image can be saved as .png .jpg .gif or .bmp file (among others) filename = "my_drawing.jpg" image1.save(filename) root.mainloop()</code>
以上是如何将 Tkinter Canvas 内容转换为图像?的详细内容。更多信息请关注PHP中文网其他相关文章!