yesod-media-simple: Simple display of media types, served by yesod

[ graphics, library, mit ] [ Propose Tags ]

Modules

[Last Documentation]

  • Yesod
    • Media
      • Yesod.Media.Simple

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.0, 0.1.0.1, 0.2.0.0, 0.2.0.1
Dependencies base (>=4 && <5), bytestring, diagrams-cairo, diagrams-core, diagrams-lib (<1.3), directory, JuicyPixels, vector, yesod (>1.2) [details]
License MIT
Copyright 2014 Michael Sloan
Author Michael Sloan
Maintainer mgsloan@gmail.com
Revised Revision 2 made by MichaelSloan at 2015-10-13T02:14:13Z
Category Graphics
Home page https://github.com/mgsloan/yesod-media-simple
Uploaded by MichaelSloan at 2015-07-18T04:41:00Z
Distributions NixOS:0.2.0.1
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 3452 total (16 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-01 [all 7 reports]

Readme for yesod-media-simple-0.1.0.0

[back to package description]

yesod-media-simple

This package provides simple utilities for starting a web server which serves some media. This makes serving media as easy as serve image. For example, here's how you serve a simple diagram:

import Diagrams.Prelude
import Yesod.Media.Simple

main = serveDiagram (circle 10 ||| square 20)

Media Types

Currently yesod-media-simple supports serving the following media types:

  • Diagrams, by using cairo to render to png. Just call serveDiagram :: Diagram Cairo R2 -> IO ()!

  • JuicyPixels images. Also includes utilities for putting JuicyPixels images in Diagrams and vice-versa.