Re: [E-devel] Imlib2 opening a file from memory

2005-02-25 Thread Antonio Larrosa Jiménez
On Friday 25 February 2005 07:26, Carsten Haitzler wrote: you could - it makes sense, but if its just thumbnail creation.. seriously look at epeg. it is custom build JUST to do this. and its about as fast as it gets. (many times faster than imlib2... which already is many times faster than

[E-devel] Imlib2 opening a file from memory

2005-02-23 Thread Antonio Larrosa Jiménez
Hello, I have the contents of a jpeg file in memory and I'd like to do some operations on it before writing it to disk, so I'd like to open the file without having to save it to disk, then use imlib_load_image( filename ) and then removing the temporary file. The kernel is of course caching

Re: [E-devel] Imlib2 opening a file from memory

2005-02-23 Thread Antonio Larrosa Jiménez
On Wednesday 23 February 2005 23:43, Michel Briand wrote: Hello Hi, maybe you can use int mkfifo (const char *FILENAME, mode_t MODE) to create a FIFO in your application. You can then invoke imlib2 with this filename. You must feed this FIFO with you data. Hmmm, nice idea, but I'm afraid