如何使用PIL在python图像中绘制纹理和渐变作为背景?

时间:2016-09-14 08:28:31

标签: python python-imaging-library python-3.5 pillow

我现在使用黑色作为背景。我想在图像的背景中使用白色和黑色混合渐变色。

以下是我目前使用的代码。请帮忙。

import PIL
from PIL import ImageFont
from PIL import Image
from PIL import ImageDraw
font = ImageFont.truetype("MelmaCracked.ttf", 25)
img = Image.new("RGBA", (500,400), (0,0,0,0))
draw = ImageDraw.Draw(img)
draw.text((0,0), "This is a test", (255,255,255,1), font=font)
draw = ImageDraw.Draw(img)
img.save("test.png")

我想在我的图像背景中创建白色和黑色渐变。

在下面的问题中,创建了手动渐变。 Plot gradients using PIL in Python

在上面的答案中,创建了两个渐变,一个用于圆形,一个用于矩形,但我正在寻找可以通过一些代码更改来调整所有渐变类型的东西。

以及实现相同目的的任何其他替代方案。

P.S。我使用的是Python 3.5

0 个答案:

没有答案