Page 1 of 1

blob to blob

Posted: 2007-09-13T03:00:04-07:00
by jpiquemal
Hello all
I read a BMP file to a blob (FileToBlob), how can i transform that blob to get a JPEG, always in a blob ? (something like BlobToBlob)

Re: blob to blob

Posted: 2007-09-23T19:34:51-07:00
by anthony
Read in the BMP blib into a IM image, then save it into a JPEG blob.

Obvious isn't it. A blob is just a alternative place IM can read or write image formats, so just read or write the image in-to/out-of blobs instead of a disk file.

Re: blob to blob

Posted: 2007-09-23T23:24:52-07:00
by jpiquemal
Thank you