Good morning, I am seearching for a converter to get Gif files from Flash(swf). There are some tools, but I need a console solution. Did someone got experience with this? Thank you
Laudenberg
Posts
-
Flash to Gif -
Redraw PictureControl dont work...Thank you for your awnser. I tried it, but the problem is still the same :(
-
Redraw PictureControl dont work...Good Morning, I got a small problem... I use 2 Picture Control boxes. the first box play a stream from my webcam, the second should be overlap the first, and show a grabbed edited frame. I just use m_webcam.ShowWindow(0) and m_pic.ShowWindow(1). The Problem is, after i called this, the Picturebox is empty. But when i minimize and maximize the window, the Picture is shown like i expected. Is there a way to redraw the picturebox?? :confused:
-
capGrabFrame!!! How can i get the Frame?Good Morning, I have a problem with vfw (Video for Windows) and could need some advices. I tryed to catch a single frame from a webcam. I've got not much experience in programming with visual c++, i would be very thankful for any help. The Code looks like this: HWND hwndVideo; // Is a global Variable //create capture window hwndVideo = capCreateCaptureWindow((LPCWSTR)"WebCam", WS_CHILD | WS_VISIBLE, 0 ,0, (int)640, (int)480, m_CamWnd, (int)3); //start the Preview capPreviewRate(hwndVideo, 20); capPreview(hwndVideo, true); //I tryed to get the frame with capGrabFrame, but i wasnt able to get the framedata. capGrabFrame(hwndVideo); // or capGrabFrameNoStop(hwndVideo); How can i get the framedata to work with it??? :confused: