Image Streaming

Steffen Brodowski st.brodowski at eucrea.com
Tue Jul 8 03:26:23 EDT 2003


Hello everyone,

since one week, I'm programming with python. Its a realy interesting
tool. I wrote a script for generating barcodes in jpg-format.
Everything is ok, but my function "CreateBarcode" should write the jpg
data into an outstream. All barcodes will be generate online, without
saving the jpgs on harddisk.

Can you give me a tip witch objects I need and how to put the jpg into
an outgoing stream?

import Image, ImageDraw
def CreateBarcode(SourceString,Linewidth,WriteText):
    blablabla
    ...
    NewImage = Image.new("L",NewSize,Backcolor)
    ImgDraw = ImageDraw.Draw(NewImage)
    ....

    #How to put the image into an stream?

best regards 

Steffen Brodowksi
Germany




More information about the Python-list mailing list