Re: 2D graphics options with Clojure?

2011-05-02 Thread Gregg Williams
I have been using a longstanding, well-supported Java 2D drawing toolkit called Piccolo2D (http://www.piccolo2d.org/index.html). Here is some text from its home page: - Piccolo2D is a toolkit that supports the development of 2D structured graphics programs, in general, and Zoomable User

Re: 2D graphics options with Clojure?

2011-05-01 Thread stu
On Apr 30, 5:54 pm, Nathan Sorenson n...@sfu.ca wrote: Batik can serialize to both PNG and PDF.http://xmlgraphics.apache.org/batik/ I currently use Batik in a clojure project doing a lot of drawing of 2d vector-based images. It's a very extensive library but it suits my needs well. Do you

Re: 2D graphics options with Clojure?

2011-05-01 Thread fyuryu
Processing has PDF exporting capabilities via one of the standard libraries that ship with it: http://processing.org/reference/libraries/pdf/index.html I haven't used it myself, but I remember seeing nice stuff rendered with it. -Roland -- You received this message because you are subscribed

Re: 2D graphics options with Clojure?

2011-04-30 Thread Nathan Sorenson
Batik can serialize to both PNG and PDF. http://xmlgraphics.apache.org/batik/ I currently use Batik in a clojure project doing a lot of drawing of 2d vector-based images. It's a very extensive library but it suits my needs well. On Apr 29, 9:26 pm, stu stuart.hungerf...@gmail.com wrote: Hi,

Re: 2D graphics options with Clojure?

2011-04-30 Thread Dave Ray
I've also had success with Batik for server-side image generation. As long as you don't mind SVG. Dave On Saturday, April 30, 2011, Nathan Sorenson n...@sfu.ca wrote: Batik can serialize to both PNG and PDF. http://xmlgraphics.apache.org/batik/ I currently use Batik in a clojure project doing

Re: 2D graphics options with Clojure?

2011-04-30 Thread Brenton
Stu, Just a quick thought, you can use Java2D for the images and then iText to create the PDFs. Brenton On Apr 29, 9:26 pm, stu stuart.hungerf...@gmail.com wrote: Hi, I'm developing a Clojure project that loads and creates a bunch of simple 2D geometry (lines, polygons, beziers, text etc).

2D graphics options with Clojure?

2011-04-29 Thread stu
Hi, I'm developing a Clojure project that loads and creates a bunch of simple 2D geometry (lines, polygons, beziers, text etc). I need to create in a batch-style way high quality 2D renderings of that geometry, firstly as PNG files and secondly as PDF files. What are my options for doing this