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:

http://social.msdn.microsoft.com/forums/en-us/csharpgeneral/thread/f23caf50-85a9-4074-8328-176c8bcc393e/

same question. answers.

more available here:

http://www.codeproject.com/articles/7388/a-simple-c-wrapper-for-the-avifile-library


Comments

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -