Personal tools

Chlor

From HaskellWiki

(Difference between revisions)
Jump to: navigation, search
(Installation)
Line 60: Line 60:
=== Plans ===
=== Plans ===
-
* improve line chart and add more chart types
 
-
* add import for simple SVG graphics
 
-
* add PDF export via HPDF
 
* see the [http://github.com/Lenny222/Chlor/wiki/Todo TODO list] on github
* see the [http://github.com/Lenny222/Chlor/wiki/Todo TODO list] on github
-
 
-
== Contact ==
 
-
[[User:Lenny222]]
 

Revision as of 12:37, 22 October 2010

Chlor is a pure-Haskell library that

  • produces vector graphics
  • provides highlevel components
  • supports essential file formats like SVG, EPS, etc. (PDF to follow)

Contents

1 Examples

The page jumps in an interactive novel:

Image:Chlor_example1.png

2 Overview

2.1 Boxes

Layout can be defined by boxes, which are invisible themselves.

Boxes can be

  • shrinked
  • split - with margins or no margins
  • merged with other boxes
  • filtered

Image:Chlor_boxes.png

2.2 Shapes

Some builtin-shapes mapped to a box grid:

Image:Chlor_shapes.png

2.3 Graphical attributes

Dash pattern:

Image:Chlor_dash_patterns.png

Clipping:

Image:Chlor_clipping.png

2.4 Transformations

Rotate, shear:

Image:Chlor_affine_map.png

2.5 Charts

Line chart:

Image:Chlor line chart.png

3 Installation

Chlor is hosted on github

4 Development

4.1 Plans