thx
You can. You have to think about how you want to compress the image.
JPEG, PNG, TIFF?
Something like this:
// get the picture
dim pic as Picture = LogoMBS(100)
// compress with PNG
dim data as string = PictureToPNGStringMBS(pic,0)
// make text using Base64 encoding
dim text as string = EncodeBase64(data)
// display
MsgBox text
Greetings
Christian
--
Over 1100 classes with 22000 functions in one REALbasic plug-in.
The Monkeybread Software Realbasic Plugin v9.0.
> There is possible without mbs plugin? (or at least with a free plugin)
> now with my budget can't buy any commercial plugin...
You can write to a file and read that file with a binarystream.
PS: The PNG plugin is just 20 Euro.
Greetings
Christian
--
Over 1500 classes with 29000 functions in one REALbasic plug-in.
The Monkeybread Software Realbasic Plugin v9.2.
thx to all