Draw2d changed to use our own freetype fork
Go to file
Laurent Le Goff 6857de8d5b move postscript code to separate repository llgcode/ps 2015-04-17 12:11:33 +02:00
cmd move postscript code to separate repository llgcode/ps 2015-04-17 12:11:33 +02:00
draw2d all: gofmt+goimports 2015-04-16 11:51:13 +02:00
draw2dgl all: gofmt+goimports 2015-04-16 11:51:13 +02:00
issue23 all: gofmt+goimports 2015-04-16 11:51:13 +02:00
resource move postscript code to separate repository llgcode/ps 2015-04-17 12:11:33 +02:00
wingui move postscript code to separate repository llgcode/ps 2015-04-17 12:11:33 +02:00
.hgignore add *.exe to hgignore 2011-05-19 10:42:58 +02:00
.project Remove oldies 2011-04-27 10:06:14 +02:00
AUTHORS Remove oldies 2011-04-27 10:06:14 +02:00
LICENSE Remove oldies 2011-04-27 10:06:14 +02:00
Makefile move postscript code to separate repository llgcode/ps 2015-04-17 12:11:33 +02:00
README doc: fix some links 2015-04-16 12:03:35 +02:00

README


This package (written in *[http://golang.org go]*) provide an API to draw 2d geometrical form on [http://golang.org/pkg/image/ images]. 
This library is largely inspired by [http://www.tailrecursive.org/postscript/ postscript], [http://cairographics.org/ cairo], [http://dev.w3.org/html5/canvas-api/canvas-2d-api.html#the-2d-drawing-context HTML5 canvas]. 

The package depends on [http://code.google.com/p/freetype-go/ freetype-go] package thanks to its rasterization algorithm. 

Some algorithm have been translated from http://www.antigrain.com project ([http://www.antigrain.com/research/adaptive_bezier/index.html adaptive bezier], and arc drawing)

=== Installation ====
Once you have Go installed, to install draw2d:

 * First see the installation procedure of [http://code.google.com/p/freetype-go/ freetype-go]
 * `go get github.com/llgcode/draw2d/draw2d`

a good starting point is the [http://github.com/llgcode/draw2d/wiki/GettingStarted getting started]


=== [http://github.com/llgcode/draw2d/wiki/Samples Samples] ===
Sample images generated by draw2d (inspired by [http://cairographics.org/samples/ cairo samples]): 
there's already some bugs please refer to [http://github.com/llgcode/draw2d/issues issue tracking] 

[http://draw2d.googlecode.com/svn/wiki/test_results/TestPath.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestDrawArc.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestDrawArcNegative.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestCurveRectangle.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestDrawCubicCurve.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestDash.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestFillStroke.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestFillStyle.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestMultiSegmentCaps.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestRoundRectangle.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestLineCap.png]
[http://draw2d.googlecode.com/svn/wiki/test_results/TestLineJoin.png]