from Tkinter import *
import socket, sys
from PIL import Image, ImageTk
root = Tk()
root.title("Whois Tool")
root.resizable(0, 0)
text = Text()
text1 = Text()
image = Image.open("hacker2.png")
photo = ImageTk.PhotoImage(image)
label = Label(root, image=photo)
label.pack()
text1.config(width=15, height=1)
text1.pack()
def button1():
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("com.whois-servers.net", 43))
s.send(text1.get("1.0", END) + "\r\n")
response = ''
while True:
a = s.recv(4096)
response += a
if a == '':
break
s.close()
text.insert(END, response)
def clear():
text.delete("1.0", END)
b = Button(root, text="Enter", width=10, height=2, command=button1)
b.pack()
c = Button(root, text="Clear", width=10, height=2, command=clear)
c.pack()
scrollbar = Scrollbar(root)
scrollbar.pack(side=RIGHT, fill=Y)
text.config(width=60, height=15)
text.pack(side=LEFT, fill=Y)
scrollbar.config(command=text.yview)
text.config(yscrollcommand=scrollbar.set)
root.mainloop()
ルートウィンドウのサイズを変更するにはどうすればよいですか、またはルートウィンドウ、ボタン、またはラベルなどに合わせて画像のサイズを変更するにはどうすればよいですか。
500x500ウィンドウの場合、
root.geometry("500x500")
画像のサイズ変更に関しては、Tkinterがサポートしているとは思いません。画像のサイズをウィンドウの解像度に変更するには、 [〜#〜] pil [〜#〜] などのライブラリを使用する必要があります。 -サイズ変更コードの例-