Have you tried writing the binary data to a file, then reading it from that
file with PIL?

Also, you could try Image.frombuffer() if you can coerce the binary data
into a python string. I just finished a win32 project that read thumbnails
from COM using IExtractImage and the data came in with B,G,R byte order
instead of R,G,B, so that took some finagling as well.

Steven James


On 5/11/07, Grzegorz Adam Hankiewicz <[EMAIL PROTECTED]> wrote:

I have an access database I can access through python. A query for the
image column returns binary data, but this data is in OLE image/bitmap
format. Is it possible to convert this into something PIL understands?

--
Rastertech España S.A.
        Grzegorz Adam Hankiewicz
/Jefe de Producto TeraVial/

C/ Perfumería 21. Nave I. Polígono industrial La Mina
28770 Colmenar Viejo. Madrid (España)
Tel. +34 918 467 390 (Ext.17)     *·*           Fax +34 918 457 889
[EMAIL PROTECTED]         *·*           www.rastertech.es
<http://www.rastertech.es/>

_______________________________________________
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

_______________________________________________
Python-win32 mailing list
Python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to