i have a video display in my flex app. which is attached to the camera. The camera resolution can vary depending on the user's selection, While the video display (preview) dimensions are fixed. i am then doing this:
bmd.draw(vidDisplay);
where bmd is the bitmap.. The problem is the resulting bitmap has the correct size of the camera settings (which is set) but the capture from the video is always the size of the video display inside the bitmap.. I hope i am making sense.. The result looks like a little picture inside a bigger image top left justified..
I want to have a video display preview with fixed height, but be able to take snapshot with varying resolution.. Any help is appreciated!