For a web project I need the possibility to generate jpg and animated gif images very fast. As server platform I will use Linux and the NekoVM
(behind a apache via mod_tora
). As there is no library for image generation for haXe
and neko
I am about to write a own one.
Neko
itself is written in c
, and you can simply extend the VM writing shared libraries with c
. At the moment we playing arround with libGD
, which offers all the features we need (resizing, sampling, copying images, adding text, save as jpeg or animated gif) and of course a lot of stuff we don't need.
At the moment this works great, but it seems to be a little bit slow. Is there another popular open library that I could try to use for my purposes (and that is maybe faster)?