ImageTkfromtkinterimportmessageboxastkMessageBoxfromtkinterimportfiledialogastkFileDialog# アプリケーション(GUI)クラスclassApplication(tk.Frame):DEBUG_LOG=Truedef__init__(self,master=None):super().__init__(master)self.pack()self.create_widgets()defcreate_widgets(self):print('DEBUG:---{}---'...
from PIL import Image, ImageDraw, ImageFont, ImageFilter import random # 随机字母: def rndChar(): return chr(random.randint(65, 90)) # 随机颜色1: def rndColor(): return (random.randint(64, 255), random.randint(64, 255), random.randint(64, 255)) # 随机颜色2: def rndColor2(): re...
stdin.readline() print(f"You entered: {s}") # GUIを作成する import tkinter as tk window = tk.Tk() entry = tk.Entry(window) entry.pack() button = tk.Button(window, text="Submit", command=lambda: print(f"You entered: {entry.get()}")) button.pack() window.mainloop() # input...
plug import ChuangmiPlug #小米智能家居的模块 from yeelight import Bulb #YeeLight的模块 import tkinter #为了写一个丑点的窗口 ip='192.168.31.41' token='24dfac257f5940d4b30046c16e81ea52' # 输入之前获得的token d = ChuangmiPlug(ip=ip, token=token) #智能插座 d2 = Bulb("192.168.31.131") #Y...
画像を読み込んで表示するサンプルです。 TKを使っている関係上、画像を読み込んでからの記述がちょっと長いですね👀sample_02.py import cv2 import tkinter as tk from PIL import ImageTk, Image # 画像読み込み image = cv2.imread('sample.jpg') # TK用にチャンネルをRGBに変更 rgb_...