生成 PIL.Image 对象,随机生成:
形状、填充和轮廓颜色。
生成的图像被绘制到 tk.Canvas 上,用于显示;
这是无关紧要的/用于演示目的。
(图片本身就是要求的格式。)
from datetime import datetime
from PIL import Image, ImageDraw, ImageTk
from random import randint, randrange
# Create random indicator images.
WIDTH, HEIGHT = 50, 50
COUNT = 100
# Use datetime (somehow), to generate random int.
def datetimeToInt():
y, m, d, hour, min, sec = datetime.now().timetuple()[0:6]
return y + m + d + hour + min + sec
def randRgb():
return(randint(0, 255), randint(0, 255), randint(0, 255))
def randTriangle():
x1, y1 = randrange(0, WIDTH), randrange(0, HEIGHT)
x2, y2 = randrange(0, WIDTH), randrange(0, HEIGHT)
x3, y3 = randrange(0, WIDTH), randrange(0, HEIGHT)
return [(x1,y1), (x2,y2), (x3,y3)]
def randRect():
x1, y1 = randrange(0, WIDTH), randrange(0, HEIGHT)
x2, y2 = randrange(0, WIDTH), randrange(0, HEIGHT)
return [(x1,y1), (x2,y2)]
return
randEllipse = randRect
# Map: random shape creation functions -> ImageDraw methods
shapeFactories = [
(randTriangle, ImageDraw.ImageDraw.polygon),
(randRect, ImageDraw.ImageDraw.rectangle),
(randEllipse, ImageDraw.ImageDraw.ellipse)
]
shapeFactoriesCount = len(shapeFactories)
imgOpenList = []
imgClosedList = []
for x in range(COUNT):
# Get random index, within full range:
#randIdx = randrange(0, shapeFactoriesCount)
# Use random int, generated from datetime (somehow):
randIdx = datetimeToInt() % shapeFactoriesCount
shapeFactory, drawMethod = shapeFactories[randIdx]
im_open = Image.new('RGBA', (WIDTH, HEIGHT), '#00000000')
draw = ImageDraw.Draw(im_open)
drawMethod( # passing 'self'/'draw' explicitly to method:
draw, shapeFactory(), fill=randRgb(), outline=randRgb()
)
imgOpenList.append(im_open)
imgClosedList.append(im_open.rotate(90))
# The rest is just for displaying the resulting images.
import tkinter as tk
from math import floor, sqrt
root = tk.Tk()
imgOpenList = [
ImageTk.PhotoImage(img) for img in imgOpenList
]
imgClosedList = [
ImageTk.PhotoImage(img) for img in imgClosedList
]
imgsPerAxis = floor(sqrt(COUNT)) # rough approximation
canvas = tk.Canvas(
root,
width=WIDTH * imgsPerAxis * 2, # x2: open & closed images
height=HEIGHT * imgsPerAxis
)
canvas.pack()
for i in range(imgsPerAxis):
for j in range(imgsPerAxis):
canvas.create_image(
2*j*WIDTH, i*HEIGHT,
image=imgOpenList[i*imgsPerAxis + j],
anchor=tk.NW
)
canvas.create_image(
(2*j+1)*WIDTH, i*HEIGHT,
image=imgClosedList[i*imgsPerAxis + j],
anchor=tk.NW
)
root.mainloop()
您能否将使用这些图像的代码发布为图标*?
(* 在您的 GUI 中看起来像树视图)
(我很好奇,不记得在那里看到自定义图标。)
如果您想要一个合成图像而不是单个图标:
from datetime import datetime
from PIL import Image, ImageDraw, ImageTk
from random import randint, randrange
# Create random composite image.
WIDTH, HEIGHT = 200, 200
COUNT = 40
# Use datetime (somehow), to generate random int.
def datetimeToInt():
y, m, d, hour, min, sec = datetime.now().timetuple()[0:6]
return y + m + d + hour + min + sec
def randRgb():
return(randint(0, 255), randint(0, 255), randint(0, 255))
def randTriangle():
x1, y1 = randrange(0, WIDTH), randrange(0, HEIGHT)
x2, y2 = randrange(0, WIDTH), randrange(0, HEIGHT)
x3, y3 = randrange(0, WIDTH), randrange(0, HEIGHT)
return [(x1,y1), (x2,y2), (x3,y3)]
def randRect():
x1, y1 = randrange(0, WIDTH), randrange(0, HEIGHT)
x2, y2 = randrange(0, WIDTH), randrange(0, HEIGHT)
return [(x1,y1), (x2,y2)]
return
randEllipse = randRect
# Map: random shape creation functions -> ImageDraw methods
shapeFactories = [
(randTriangle, ImageDraw.ImageDraw.polygon),
(randRect, ImageDraw.ImageDraw.rectangle),
(randEllipse, ImageDraw.ImageDraw.ellipse)
]
shapeFactoriesCount = len(shapeFactories)
composite = Image.new('RGBA', (WIDTH, HEIGHT), '#00000000')
draw = ImageDraw.Draw(composite)
for x in range(COUNT):
# Get random index, within full range:
#randIdx = randrange(0, shapeFactoriesCount)
# Use random int, generated from datetime (somehow):
randIdx = datetimeToInt() % shapeFactoriesCount
shapeFactory, drawMethod = shapeFactories[randIdx]
drawMethod( # passing 'self'/'draw' explicitly to method:
draw, shapeFactory(), fill=randRgb(), outline=randRgb()
)
# The rest is just for displaying the resulting images.
import tkinter as tk
root = tk.Tk()
compositeTk = ImageTk.PhotoImage(composite)
tk.Label(image=compositeTk).pack()
root.mainloop()