create video from streamed images c# -
how can build video stream image (only image without sound) in c#?
here code of application:
static int ii = 1; public void drawbitmap(byte[] data) { memorystream ms = new memorystream(data); try { bitmap b = new bitmap(ms); b.save(@"c:\test\" + (ii++) + ".jpg"); image = (image)b; picturebox1.image = i; ii++; } catch (exception e) { } }
you might want take @ thread:
same question. answers.
more available here:
http://www.codeproject.com/articles/7388/a-simple-c-wrapper-for-the-avifile-library
Comments
Post a Comment