① python怎么在word表中插图片
# -*- coding: UTF8 -*-from docx import Documentfrom docx.shared import Pt doc = Document() # 文件存储路径path = "C:\\Users\\Administrator\\Desktop\\word文档\\" # 读取文档# doc = Document(path + "hello.docx") # 添加图片,后面的参数设置图片尺寸,可以选填doc.add_picture(path + 'cat.jpg', width=Pt(300))
② 如何用python导入一张图片
建立工具栏之后,在程序运行添加一张图片运行。
选择图片添加之后,在图片编辑程序里运用函数导入完成。
③ python的tkinter中如何在frame插入label图片
Python GUI - Tkinter LabelFrame: 在一个labelframe一个简单的容器构件。其主要目的是作为一个间隔或复杂的窗口布局容器
在一个labelframe一个简单的容器构件。其主要目的是作为一个间隔或复杂的窗口布局容器.
该部件有一帧的功能,加上能够显示标签.
语法:
这里是一个简单的语法来创建这个widget:
w = LabelFrame( master, option, ... )
参数:
master:这代表了父窗口.
options:下面是这个小工具最常用的选项列表。这些选项可以作为键 - 值对以逗号分隔.
Option
Description
bg The normal background color displayed behind the label and indicator.
bd The size of the border around the indicator. Default is 2 pixels.
cursor If you set this option to a cursor name (arrow, dot etc.), the mouse cursor will change to that pattern when it is over the checkbutton.
font The vertical dimension of the new frame.
height The vertical dimension of the new frame.
labelAnchor Specifies where to place the label.
highlightbackground Color of the focus highlight when the frame does not have focus.
highlightcolor Color shown in the focus highlight when the frame has the focus.
highlightthickness Thickness of the focus highlight.
relief With the default value, relief=FLAT, the checkbutton does not stand out from its background. You may set this option to any of the other styles
text Specifies a string to be displayed inside the widget.
width Specifies the desired width for the window.
例子:
自己尝试下面的例子。下面是如何创建3窗格部件:
这将产生以下结果:
④ Python tkinter 在背景图片上怎么加pylab画出的图
#coding:utf-8
importTkinterasTK
fromPILimportImage,ImageTk
defdata_matplotlib():
importnumpyasnp
importmatplotlib.pyplotasplt
....
plt.savefig('tmp.png')
returnImageTk.PhotoImage(Image.open('tmp.png'))
#Definition
image='Hydrangeas.jpg'
#Tkinter
root=TK.Tk()
root.title('加载图形数据')
root.geometry('1024x768+1+1')
root.update()
canvas=TK.Canvas(root,width=1024,height=768,bg='green')
image_data=ImageTk.PhotoImage(Image.open(image))
canvas.create_image(0,0,image=image_data,anchor=TK.NW)
i=data_matplotlib()
canvas.create_image(100,200,image=i,anchor=TK.NW)
canvas.create_text(root.winfo_width()/2,root.winfo_height()/10,
text='Sample',font=('Arial',18),fill='white')
canvas.pack(side=TK.TOP,expand=1,fill='both')
root.mainloop()
不过,使用中间图片还是有点难看,不知道哪位对matplotlib熟悉点的可以指教一下?
⑤ python3中如何加载图片
答: 如下所示。
import cv2
image = cv2.imread('./example.png')
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
import numpy as np
image = mpimg.imread('./example.png')
print image.shape
plt.imshow(image) #调用imshow函数
在这里只是说了两种方法,希望能够帮助到你。
⑥ Python3 tkinter,怎么在Label/Canvas中插入图片
tkinter基于tcl/tk,只支持gif、png和bitmap位图,其余图片格式需要通过第三方库PIL(pillow)提供的ImageTk转化为tcl/tk能够接受的图片数据。
⑦ python里面,怎么插入图片
是啊,用本地文件路径啊
给你个例子
img = tkinter.PhotoImage(file="icons.gif") # reference PhotoImage in local variable