import numpy as np from PIL import Image, ImageDraw def heart(size): width, height = size img = Image.new('L', size, 0) draw = ImageDraw.Draw(img) polygon = [ (width / 10, height / 3), (width / 10, 81 * height / 120), (width / 2, height), (width - width / 10, 81 * height / 120), (width - width / 10, height / 3), ] draw.polygon(polygon, fill=255) draw.ellipse((0, 0, width / 2, 3 * height / 4), fill=255) draw.ellipse((width / 2, 0, width, 3 * height / 4), fill=255) return img img = Image.open("woman.jpg").convert("RGB") npImage = np.array(img) img_heart = heart(img.size) npAlpha = np.array(img_heart) npImage = np.dstack((npImage, npAlpha)) Image.fromarray(npImage).save('result.png')
原理是这么个原理啊,具体数值你自己再调整一下。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
原理是这么个原理啊,具体数值你自己再调整一下。