1

我想转换这样的图像,以便为 django 中的图片添加效果,如此处所述

考拉挥手

我决定将它作为一个伟大的django -imagekit/photologue的过程来实现

我对 PIL 的了解不是很好,所以我的问题是

如何通过 PIL 中的正弦偏移量来打算一列像素?

欢迎任何提示(代码,lins,一般想法)

4

1 回答 1

6

这是一个快速-n-dirty 示例,它应该将您带到正确的方向:

from PIL import Image, ImageOps
import math

src = Image.open('arched.jpg')

ampl = step = 10

img = ImageOps.expand(src, border=ampl*4, fill='white')
size = img.size

straight_mesh = {}
distorted_mesh = {}
for y in range(size[1]//step-1):
    py = step*(y+1)
    dx = -int(round(ampl*math.sin(py*math.pi/size[1])))
    print dx 
    for x in range(size[0]//step-1):
        px = step*(x+1)
        straight_mesh[x, y] = (px, py)
        distorted_mesh[x, y] = (px+dx, py)
transform = []
for x in range(size[0]//step-2):
    for y in range(size[1]//step-2):
        transform.append((
            map(int, straight_mesh[x, y] + straight_mesh[x+1, y+1]),
            map(int, distorted_mesh[x, y] + distorted_mesh[x, y+1] + \
                    distorted_mesh[x+1, y+1] + distorted_mesh[x+1, y])
        ))
img = img.transform(size, Image.MESH, transform, Image.BICUBIC)
img = ImageOps.crop(img, border=ampl*2)
img.save('result.jpg')
于 2009-10-12T17:42:07.900 回答