在图像上插入文本,python

时间:2018-05-15 14:08:44

标签: python-3.x image python-imaging-library tkinter-canvas

我的项目是关于加载图像,当我点击一个按钮时,图像中会出现一个文本区域,我可以在其上写一个文本,然后保存写在图像和图像上的文本。为此,我使用tkinter,但我将图片设置为背景,并添加了一个文本框(text widget)并输入文字,但显然我无法保存该图片(一套)作为背景)和写在上面的文字。我尝试使用PIL,但我找不到我想要的东西。 这是我使用tkinter的代码:

from tkinter import *
from PIL import ImageTk
import cv2

#root = Tk()

image=cv2.imread("New_refImg.png")
width_1, height_1,channels = image.shape   
print(width_1)
print(height_1)

canvas = Canvas(width =height_1, height = width_1, bg = 'blue')
canvas.pack(expand = 1, fill = BOTH)

img = ImageTk.PhotoImage(file = "New_refImg.png")

canvas.create_image(0, 0, image = img, anchor = NW)

#Add text
entry = Entry(canvas, width=12)
entry.pack(side=BOTTOM,padx=43,pady=height_1-130) # "side" position button

def onok():    
    x= entry.get().split('x')
    print(x)

Button(canvas, text='OK', command=onok).pack(side=LEFT)

mainloop()

1 个答案:

答案 0 :(得分:1)

因此,您可以将文本绘制到画布中-Python: how to add text inside a canvas?-然后将其转换为图像进行保存-How can I convert canvas content to an image?

但是,我建议使用PIL / Pillow。您可以在图像上绘制文本-https://pillow.readthedocs.io/en/5.2.x/reference/ImageDraw.html#example-draw-partial-opacity-text。您可以将Pillow图像直接作为参数-ImageTk.PhotoImage(im)提供给ImageTk.PhotoImage。您自然可以将图像保存到文件-http://pillow.readthedocs.io/en/5.2.x/reference/Image.html#PIL.Image.Image.save