I see a lot of advice from people wanting to take portrait photos that tell them to rotate the camera by 90 degrees. However, no matter what I try the only thing that actually "rotates" is the image being taken by the camera, however it retains it's width and height proportions, so what happens is that the picture is only not distorted if the SurfaceView is narrow and tall.
What I'm trying to achieve is to take a 4x3 photo that is NOT warped in a 3x4 layout. It will be fairly narrow, I know, but the object is to rotate the Preview view -90degrees and yet preserve the normal aspect ratio of the Camera. As it stands, everything I've tried has resulted in the image being squished if I want to orient the photo across my portrait layout.
I'm starting to suspect that I'll need to apply a matrix to the Preview that will rotate it -90 degrees, but I'm not sure how to go about doing that, or if that's actually the right approach. Would love some advice.
Edit: Just to be clear here's the relevant excerpt from the javadocs: setPreviewSize() "If the display orientation is set to 0 or 180, preview size should be set to 480x320. If the display orientation is set to 90 or 270, preview size should be set to 320x480."
That totally fails to address the situation where you want to hold the device in portrait mode but have the camera preview appear in a small landscape window (which is what I'm trying to achieve).
TIA
