Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Thanks for taking the time to look at my issue.

The app i'm writing requires camera functionality. So to learn about how to operate the camera, i followed this script:

http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/graphics/CameraPreview.html

I have put the activity in my manifest, set the screen orientation for it on landscape mode.

The problem im having is, when the camera is held sideways(so i hold my galaxy tab p1000 in landscape position) the view is stretched out.

To be more specific about my script. I used an exact copy of code that google made. It can be found in the android-sdk\samples\android-8\ApiDemos\src\com\example\android\apis\graphics\

The file itself is called CameraPreview.

I really have no clue why the screen looks so stretched.. ofcourse the format is weird and not square.. but still.. when using the default camera app installed on the device, it doesnt deform at all. This camera deforms when i hold it sideways, and move it even a little. Well.. the image I mean.

enter image description here

enter image description here

What I did was.. I held my galaxy tab to take a picture of an object(laptop in this case) then took a picture with my phone of my galaxy. On the galaxy I have the camera screen open in the app im making. This counts for both images. one I hold sideways and one i hold portrait. the pics are a bit unclear but you can see that in the landscape picture, the camera has become massively wide.

More clear then this I can't be I think.

I hope someone will be able to resolve my issue.

Thanks :)

share|improve this question
1  
T_T So am I the only one in the world having this problem? <: – Joey Roosing Sep 28 '11 at 10:41

3 Answers

up vote 9 down vote accepted

I faced the same problem yesterday. After a researching "Camera" sources I found a reason for camera preview being stretched.

The reason is: SurfaceView aspect ratio (width/height) MUST be same as Camera.Size aspect ratio used in preview parameters. And if aspect ratio is not the same, you've got stretched image.

So, the fastest workaround is to set SurfaceView to size like 320px x 240px - smallest supported size from Parameters.getSupportedPreviewSizes().

Also, you can look at Camera standard application sources, it uses the custom layout for controlling the SurfaceView size (see PreviewFrameLayout.java, onMeasure() function).

Use

git clone https://android.googlesource.com/platform/packages/apps/Camera.git

to get Camera sources.

share|improve this answer
+1 for describing the actual problem. You can find the height and width of the SurfaceView in surfaceChanged, then use getSupportedPreviewSizes on the Camera parameters object to find the closest match and set the SurfaceView to the needed acceptable size. – Christopher Perry Dec 6 '12 at 22:32
public void surfaceCreated(SurfaceHolder holder) {
        // TODO Auto-generated method stub

        try {
            camera = Camera.open();

            camera.setDisplayOrientation(90);
            camera.setPreviewDisplay(holder);
            Camera.Parameters parameters = camera.getParameters();
            List<Size> sizes = parameters.getSupportedPictureSizes();
            parameters.setPictureSize(sizes.get(0).width, sizes.get(0).height); // mac dinh solution 0
            parameters.set("orientation","portrait");
            //parameters.setPreviewSize(viewWidth, viewHeight);
            List<Size> size = parameters.getSupportedPreviewSizes();
            parameters.setPreviewSize(size.get(0).width, size.get(0).height);
            camera.setParameters(parameters);
            camera.startPreview();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

You need only getSupportedPreviewSizes() and save it to a List:

List<Size> size = parameters.getSupportedPreviewSizes();
            parameters.setPreviewSize(size.get(0).width, size.get(0).height);
            camera.setParameters(parameters); 



camera.startPreview(); 

I hope this helps you.

share|improve this answer

You must have your camera preview in the landscape orientation, if you do it in portrait (like it currently is) it will cause this issue. I don't mean how you hold it, you just need to set the android:orientation flag to landscape.

android:orientation="landscape"

But the short answer to the direct question is, I don't know why it happens but it does. Above is my workaround.

share|improve this answer
This does not work. I stated thay it is in landscape view. And it still happens. The only thing that changes is that moving and changing to portrait is more fluent. – Joey Roosing Sep 29 '11 at 6:50
2  
Why this response is accepted? – Brais Gabin Jul 23 '12 at 13:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.