魔杖宝丽来()函数- Python
polaroid()是函数最简单的函数之一。它生成带有轻微阴影的白色边框的图像,以创建宝丽来打印的特殊效果。
Syntax :
Parameters :
Parameter | Input Type | Description |
---|---|---|
angle | numbers.Real | applies a shadow effect along this angle. |
caption | basestring | Writes a message at the bottom of the photo’s border. |
font | wand.font.Font | Specify font style. |
method | basestring | Interpolation method. ImageMagick-7 only. |
源图像:
示例 1:
wand.image.polaroid(angle, caption, font, method)
输出 :
示例 2:
为图像添加标题和角度
# Import Image from wand.image module
from wand.image import Image
# Read image using Image function
with Image(filename ="koala.jpeg") as img:
# Polaroid image using polaroid() function
img.polaroid()
img.save(filename ="polkoala.jpeg")
输出: