Applications and libraries/Graphics: Difference between revisions
BrettGiles (talk | contribs) m (Heading case) |
(PNG, JPEG, PDF writers) |
||
Line 70: | Line 70: | ||
:An image to texture loading library. Use SDL_image (and a bare minimun of SDL), to load image files as opengl textures. | :An image to texture loading library. Use SDL_image (and a bare minimun of SDL), to load image files as opengl textures. | ||
;[http:// | ;[http://users.info.unicaen.fr/~karczma/Work/Clastic_distr/clastic.html Clastic] | ||
: | :Texture generation | ||
=== Pan === | === Pan === | ||
Line 92: | Line 92: | ||
=== Graphics file formats === | === Graphics file formats === | ||
;[http://www.cs.uu.nl/people/jeroen/ Functional Specification of the JPEG algorithm, and an Implementation for Free] | ;[http://www.alpheccar.org/en/soft/hpdf HPDF] | ||
:A small portable Haskell library to generate PDF pictures. | |||
;[http://www.cs.uu.nl/people/jeroen/ Functional Specification of the JPEG algorithm], and an Implementation for Free | |||
;[http://web.archive.org/web/20010606145143/www.numeric-quest.com/haskell/gd/index.html PNG and JPEG writer] | |||
: available at internet archive; cumbersome for download | |||
;[http://web.archive.org/web/20010306041706/www.numeric-quest.com/funpdf/index.html PDF writer] | |||
: available at internet archive; cumbersome for download | |||
{{LibrariesPage}} | {{LibrariesPage}} |
Revision as of 16:46, 27 April 2007
Dealing with graphics, drawing and graphics file formats. For information about libraries for graphical user interfaces, see GUI libraries.
Applications
- Blobs diagram editor
- Blobs is a diagram editor for directed graphs. It is written in Haskell, using the platform-independent GUI toolkit wxHaskell. Blobs is a front-end for drawing and editing graph diagrams.
- Fraskell
- A Haskell program that generates images of the Mandelbrot set.
Ray tracing
- Banky : Monte Carlo ray tracing
- A monte carlo ray tracer in Haskell. Monte-Carlo ray-Tracing uses random and quasi-random techniques for improved image synthesis. Monte-carlo ray-tracers simulate global illumination and eliminates the ambient term. It does this using a set of random techniques to simulate an integration model of illumination, which is far more realistic.
- HRay: A Haskell ray tracer
- HRay, a ray tracer in Haskell. The goal is to show how elegant, short and maintainable a ray tracing implementation would be in a functional language, as opposed to an imperative or procedural language. It uses a formal model for the application, using the functional and declarative formalism Funmath
- HaRT: Haskell ray tracer
- Yet another Haskell ray tracer
- hrayt, A Haskell Raytracer
- A Haskell ray tracer in only a few hours.
- Htrace, A Haskell Raytracer
- A 1 day raytracer.
- Haskell Ray Tracer
- A Haskell ray tracer written for Jan Kort's master thesis
- bjpop-ray
- A simple raytracer using wxHaskell for the GUI.
- Parallel Ray Tracing in pH
- A parallel ray tracer, using the parallel Haskell
- Galois Ray Tracer from icfp00
- A Galois Connections team submitted a ray tracer entry in Haskell in the 2000 icfp contest
- A Ray Tracer for Spheres
- David King's Haskell port of an Id ray tracer from the Impala suite
Libraries
- The Hugs Graphics Library
- The Hugs Graphics Library supports 2-dimensional graphics operations, timers, mouse and keyboard actions and multiple windows. It runs on Hugs under both Win32 and X11. An earlier version was used for early prototypes of Fran.
- Haven
- Scalable Vector Graphics for Haskell. Portable, device-independent, resolution-independent library, including support for affine transformations, Bezier curves, fine-grained control of pen attributes, bounds and intersection tests, constructive area geometry, anti-aliased rendering, outline fonts, etc.
- Functional Reactive Animation
- FRAN is a Haskell library (or "embedded language") for interactive animations with 2D and 3D graphics and sound. It runs on Hugs under Windows 95 and Windows NT, using Win32 graphics (GDI).
- HOpenGL
- HOpenGL is a Haskell binding for the OpenGL graphics API (GL 2.1 / GLU 1.3) and the portable OpenGL utility toolkit GLUT.
- Functional Metapost
- Functional Metapost is a Haskell binding for MetaPost, the powerful but cumbersome graphics language.
- L-systems
- A Haskell implementation for Lindenmayer Systems (L-systems). The goal is to implement L-systems in Haskell, and provide a way to visualize them using HOpenGL.
- hsSDL
- Contains bindings to libSDL, libSDL_gfx, libSDL_image, libSDL_mixer and libSDL_ttf.
- Chart Library
- A simple library for drawing 2D charts, implemented in haskell, using the Cairo graphics library for rendering.
- Milfoh
- An image to texture loading library. Use SDL_image (and a bare minimun of SDL), to load image files as opengl textures.
- Clastic
- Texture generation
Pan
- Pan
- An embedded language and highly optimizing compiler for image synthesis and transformation, based on the simple idea of images as functions over infinite, continuous 2D space. The resulting binaries can be used as PhotoShop plugins, embedded in web pages or PowerPoint, or used in an interactive standalone viewer. The compiler contains no domain-specific knowledge, so it's very extensible. See the gallery for visual examples. Currently Windows-only, but ports are encouraged.
- Pan#
- Pan# is a slightly re-engineered version of Pan. It uses the same compiler but used the Microsoft .NET framework instead of visual studio, making it easier to install and use. It also has a number of new features added. While Pan is embedded in Haskell, Pan# has its own Haskell-like language built in so there is no need to use other Haskell compilers. Currently Windows-only.
- Pancito
- Pancito is a Haskell module for manipulating functional images and then saving them to disk. It was inspired by Pan.
- PanTHeon
- PanTHeon is a cross platform re-implementation of of Pan. It is still in development and will likely undergo many changes in the future.
- Panic
- A cross-platform re-implementation of Pan in Haskell using the wxWidgets GUI library and OpenGL graphics library.
Graphics file formats
- HPDF
- A small portable Haskell library to generate PDF pictures.
- Functional Specification of the JPEG algorithm, and an Implementation for Free
- PNG and JPEG writer
- available at internet archive; cumbersome for download
- PDF writer
- available at internet archive; cumbersome for download
This page contains a list of libraries and tools in a certain category. For a comprehensive list of such pages, see Applications and libraries.