將畫布內容轉換為圖像
將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中文網其他相關文章!