Re: [Haskell-cafe] Haskell PNG Writer

2008-05-09 Thread J. Garrett Morris
As long as you don't mind producing two-color images, http://haskell.org/haskellwiki/Library/PNG is an option. I found it very easy to extend it to eight-bit grayscale - I didn't need fullcolor images. /g On Sat, May 3, 2008 at 11:12 PM, Nahuel Rullo [EMAIL PROTECTED] wrote: Hi list, i am new

Re: [Haskell-cafe] Haskell PNG Writer

2008-05-05 Thread Bjorn Bringert
The libgd bindings can be used to create PNG images. See http://hackage.haskell.org/cgi-bin/hackage-scripts/package/gd /Björn On Mon, May 5, 2008 at 9:05 AM, Bit Connor [EMAIL PROTECTED] wrote: It would be nice to have haskell bindings to the libpng C library. I had trouble calling libpng

[Haskell-cafe] Haskell PNG Writer

2008-05-04 Thread Nahuel Rullo
Hi list, i am new in Haskell. I need to make images (PNG, JPEG) with haskell, if you can give me a tutorial, thanks! -- Nahuel Rullo ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Haskell PNG Writer

2008-05-04 Thread Andrew Coppin
Nahuel Rullo wrote: Hi list, i am new in Haskell. I need to make images (PNG, JPEG) with haskell, if you can give me a tutorial, thanks! Gtk2hs has the ability to read and write PNG and JPEG images. Have a look at the Graphics.UI.Gtk.Gdk.Pixbuf module:

Re: [Haskell-cafe] Haskell PNG Writer

2008-05-04 Thread Luke Palmer
SDL-image (http://hackage.haskell.org/cgi-bin/hackage-scripts/package/SDL-image-0.5.2) also supports this. Luke On Sun, May 4, 2008 at 12:12 AM, Nahuel Rullo [EMAIL PROTECTED] wrote: Hi list, i am new in Haskell. I need to make images (PNG, JPEG) with haskell, if you can give me a tutorial,

Re: [Haskell-cafe] Haskell PNG Writer

2008-05-04 Thread Brent Yorgey
On Sun, May 4, 2008 at 2:12 AM, Nahuel Rullo [EMAIL PROTECTED] wrote: Hi list, i am new in Haskell. I need to make images (PNG, JPEG) with haskell, if you can give me a tutorial, thanks! What kind of images do you need to make? -Brent ___