I'm using Python's Imaging Library and I would like to draw some bezier curves. I guess I could calculate pixel by pixel but I'm hoping there is something simpler.
|
A bezier curve isn't that hard to draw yourself. Given three points
This interpolates between two edges we've created, edge AB and edge BC. The only thing we now have to do to calculate the point we have to draw is interpolate between P0 and P1 using the same t like so:
There are a couple of things that need to be done before we actually draw the curve. First off we have will walk some |
||||
|
This, for example, draws a heart:
|
||||
|
You can use the aggdraw on top of PIL, bezier curves are supported. EDIT: I made an example only to discover there is a bug in the Here is the example anyway:
This should fix the bug if you're up for recompiling the module... |
||||
|
|