Rasterific: A pure haskell drawing engine.

[ bsd3, graphics, library ] [ Propose Tags ]

Rasterific is a vector drawing library (a rasterizer) implemented in pure haskell.

Can render vector graphics to an image and export vector data to PDF.


[Skip to Readme]

Flags

Automatic Flags
NameDescriptionDefault
embed_linear

Embed a reduced version of Linear avoiding a (huge) dep

Enabled

Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.2, 0.2.1, 0.3, 0.4, 0.4.1, 0.4.2, 0.5, 0.5.0.1, 0.5.0.2, 0.5.0.3, 0.5.1, 0.5.2, 0.5.2.1, 0.6, 0.6.1, 0.6.1.1, 0.7, 0.7.1, 0.7.2.1, 0.7.2.2, 0.7.2.3, 0.7.3, 0.7.4, 0.7.4.1, 0.7.4.2, 0.7.4.3, 0.7.4.4, 0.7.5, 0.7.5.1, 0.7.5.2, 0.7.5.3, 0.7.5.4
Change log changelog
Dependencies base (>=4.8 && <4.11), bytestring (>=0.10.2), containers (>=0.5), dlist (>=0.6), FontyFruity (>=0.5.3.2 && <0.6), free (>=4.7), JuicyPixels (>=3.2), linear (>=1.3), mtl (>=1.9), primitive (>=0.5), transformers, vector (>=0.9), vector-algorithms (>=0.3) [details]
License BSD-3-Clause
Author Vincent Berthoux
Maintainer twinside@gmail.com
Revised Revision 1 made by HerbertValerioRiedel at 2018-10-01T20:24:14Z
Category Graphics
Source repo head: git clone git://github.com/Twinside/Rasterific.git
this: git clone git://github.com/Twinside/Rasterific.git(tag v0.7.2.1)
Uploaded by VincentBerthoux at 2017-03-21T19:00:16Z
Distributions LTSHaskell:0.7.5.4, NixOS:0.7.5.4, Stackage:0.7.5.4
Reverse Dependencies 5 direct, 34 indirect [details]
Downloads 28103 total (83 in the last 30 days)
Rating 2.25 (votes: 2) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2017-03-21 [all 1 reports]

Readme for Rasterific-0.7.2.1

[back to package description]

Rasterific

Rasterific logo

Build Status Hackage

Rasterific is a Haskell rasterization engine (a vectorial renderer) implemented on top of JuicyPixels. Rasterific bases its text rendering on FontyFruity.

Main capability

  • Draw vector graphics to an image.
  • Export graphics to PDF (since 0.6).

Design

The renderer design is based on the Nile / Gezira renderer from the STEP project from the VPRI institute. The interesting thing about this renderer is the conciseness of it's implementation, providing antialiased rendering in the way.