parsing SMIL on Smartphone ?

  • Thread starter Thread starter Stefaan Moens
  • Start date Start date
S

Stefaan Moens

Hellow,
Is there a way to parse a SMIL 2.0 formatted bytestream and get for example
a picture out of it?
I'm working on a Smartphone 2003 SE in C#...

greetz,
Stefaan.
 
If your question is how to load an image from the bytestream, which is part
of SMIL, the answer is MemoryStream. Since the standard provides for a
complete bitmap (or PNG ) file data, you can use Bitmap(MemoryStream)
constructor,

If you are asking how to parse SMIL, it's XML and you will want to use
XmlTextReader class and the SMIL document on www.w3c.org
 
Alex Feinman said:
If your question is how to load an image from the bytestream, which is
part of SMIL, the answer is MemoryStream. Since the standard provides for
a complete bitmap (or PNG ) file data, you can use Bitmap(MemoryStream)
constructor,

If you are asking how to parse SMIL, it's XML and you will want to use
XmlTextReader class and the SMIL document on www.w3c.org


Thanks,
my question was a bit of both actually.
There doesn't happen to be a nice and neat example of this kind of thing?

with kind regards,
Stefaan.
 
Back
Top