You can use the [aggdraw][1] on top of PIL, bezier curves are [supported][2].

**EDIT:**

I made an example only to discover there is a bug in the `Path` class regarding `curveto` :(

Here is the example anyway:

    from PIL import Image
    import aggdraw
    
    img = Image.new("RGB", (200, 200), "white")
    canvas = aggdraw.Draw(img)
    
    pen = aggdraw.Pen("black")
    path = aggdraw.Path()
    path.moveto(0, 0)
    path.curveto(0, 60, 40, 100, 100, 100)
    canvas.path(path.coords(), path, pen)
    canvas.flush()
    
    img.save("curve.png", "PNG")
    img.show()

[This][3] should fix the bug if you're up for recompiling the module...


  [1]: http://effbot.org/zone/aggdraw-index.htm
  [2]: http://effbot.org/zone/pythondoc-aggdraw.htm#aggdraw.Path-class
  [3]: http://www.mail-archive.com/image-sig@python.org/msg02108.html