From: malc <av1474@comtv.ru>
To: Janne Hellsten <jjhellst@gmail.com>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] Portable PNG exporter
Date: Sun, 21 Sep 2008 23:50:53 +0400 (MSD) [thread overview]
Message-ID: <Pine.LNX.4.64.0809212346400.2322@linmac.oyster.ru> (raw)
In-Reply-To: <700d600f0809201037x3358a788v818d488c451ce7bf@mail.gmail.com>
On Sat, 20 Sep 2008, Janne Hellsten wrote:
> Hi list,
>
> While working on a graphics related problem, I needed to save the
> contents of a Graphics framebuffer to a .png file. Quick googling for
> "ocaml png" didn't bring up any results for libraries that would be
> easy to install via GODI. I am aware of CamlImages but unfortunately
> I have never been successful at installing it due its heavy dependence
> on external libraries. I also often work on Windows and installing
> external OCaml libraries on Windows is usually a major PITA (if
> possible at all).
>
> I decided to write a simple self-contained .png exporter that wouldn't
> depend on any external libraries (not even libpng or zlib). I thought
> someone else might benefit from this piece of code and I thus made it
> freely available here:
>
> http://code.google.com/p/aihiot/source/browse/trunk/gfx/save_bitmap/ocaml/png.ml
Few things that hurt the eye:
Int32.of_string "[number]" is unnecessary, OCaml(not sure which version
this was introduced in though) can read various specific size ints
natively:
# 0n, 0l, 0L;;
- : nativeint * int32 * int64 = (0n, 0l, 0L)
Secondly `Printf.fprintf chnl "string"' looks rather expensive compared
to `output_string chnl "string"'.
--
mailto:av1474@comtv.ru
next prev parent reply other threads:[~2008-09-21 19:50 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-20 17:37 Janne Hellsten
2008-09-20 23:03 ` [Caml-list] " Richard Jones
2008-09-22 14:47 ` Florent Monnier
2008-09-22 14:59 ` Janne Hellsten
2008-09-22 15:56 ` Daniel Bünzli
2008-09-21 0:47 ` Jon Harrop
2008-09-21 19:50 ` malc [this message]
2008-09-21 20:02 ` Janne Hellsten
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.LNX.4.64.0809212346400.2322@linmac.oyster.ru \
--to=av1474@comtv.ru \
--cc=caml-list@inria.fr \
--cc=jjhellst@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox