Back to project page esr-scanner.
The source code is released under:
Apache License
If you think the Android project esr-scanner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2008 ZXing authors//from w w w. ja v a2 s . c om * Copyright 2011 Robert Theis * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package ch.luklanis.esscan.camera; import android.content.Context; import android.content.SharedPreferences; import android.graphics.Point; import android.graphics.Rect; import android.hardware.Camera; import android.os.Handler; import android.preference.PreferenceManager; import android.util.DisplayMetrics; import android.view.SurfaceHolder; import android.view.View; import android.view.WindowManager; import java.io.IOException; import ch.luklanis.esscan.PlanarYUVLuminanceSource; import ch.luklanis.esscan.PreferencesActivity; import ch.luklanis.esscan.camera.open.OpenCameraManager; /** * This object wraps the Camera service object and expects to be the only one talking to it. The * implementation encapsulates the steps needed to take preview-sized images, which are used for * both preview and decoding. * <p/> * The code for this class was adapted from the ZXing project: http://code.google.com/p/zxing */ public final class CameraManager { public static final int MIN_FRAME_WIDTH = 240; // originally 240 public static final int MIN_FRAME_HEIGHT = 48; // originally 240 public static final double FRAME_WIDTH_INCHES = 3.5; // public static final double FRAME_HEIGHT_INCHES = 0.23; public static final double FRAME_HEIGHT_INCHES = 0.4; private final View mPreviewView; private final CameraConfigurationManager mConfigManager; private Camera mCamera; private AutoFocusManager autoFocusManager; private Rect mFramingRect; private Rect framingRectInPreview; private boolean initialized; private boolean mPreviewing; private boolean reverseImage; /** * Preview frames are delivered here, which we pass on to the registered handler. Make sure to * clear the handler so it will only receive one message. */ private final PreviewCallback mPreviewCallback; public CameraManager(View previewView) { this.mPreviewView = previewView; this.mConfigManager = new CameraConfigurationManager(previewView); mPreviewCallback = new PreviewCallback(mConfigManager); } /** * Opens the camera driver and initializes the hardware parameters. * * @param holder The surface object which the camera will draw preview frames into. * @throws IOException Indicates the camera driver failed to open. */ public void openDriver(SurfaceHolder holder) throws IOException { Camera theCamera = mCamera; if (theCamera == null) { theCamera = new OpenCameraManager().build().open(); if (theCamera == null) { throw new IOException(); } mCamera = theCamera; } mCamera.setPreviewDisplay(holder); if (!initialized) { initialized = true; mConfigManager.initFromCameraParameters(theCamera); } mConfigManager.setDesiredCameraParameters(theCamera); SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mPreviewView.getContext()); reverseImage = prefs.getBoolean(PreferencesActivity.KEY_REVERSE_IMAGE, false); } /** * Closes the camera driver if still in use. */ public void closeDriver() { if (mCamera != null) { mCamera.release(); mCamera = null; // Make sure to clear these each time we close the camera, so that any scanning rect // requested by intent is forgotten. mFramingRect = null; framingRectInPreview = null; } } /** * Asks the camera hardware to begin drawing preview frames to the screen. */ public void startPreview() { Camera theCamera = mCamera; if (theCamera != null && !mPreviewing) { theCamera.startPreview(); mPreviewing = true; autoFocusManager = new AutoFocusManager(mPreviewView.getContext(), mCamera); } } /** * Tells the camera to stop drawing preview frames. */ public void stopPreview() { if (autoFocusManager != null) { autoFocusManager.stop(); autoFocusManager = null; } if (mCamera != null && mPreviewing) { mCamera.setOneShotPreviewCallback(null); mPreviewCallback.setHandler(null, 0); mCamera.stopPreview(); this.mConfigManager.setTorch(mCamera, false); mPreviewing = false; } } /** * Convenience method for {@link ch.luklanis.esscan.CaptureActivity} */ public synchronized void setTorch(boolean newSetting) { if (mCamera != null) { if (autoFocusManager != null) { autoFocusManager.stop(); } mConfigManager.setTorch(mCamera, newSetting); if (autoFocusManager != null) { autoFocusManager.start(); } } } /** * A single preview frame will be returned to the handler supplied. The data will arrive as byte[] * in the message.obj field, with width and height encoded as message.arg1 and message.arg2, * respectively. * * @param handler The handler to send the message to. * @param message The what field of the message to be sent. */ public void requestOcrDecode(Handler handler, int message) { Camera theCamera = mCamera; if (theCamera != null && mPreviewing) { mPreviewCallback.setHandler(handler, message); theCamera.setOneShotPreviewCallback(mPreviewCallback); } } /** * Calculates the framing rect which the UI should draw to show the user where to place the * barcode. This target helps with alignment as well as forces the user to hold the device * far enough away to ensure the image will be in focus. * * @return The rectangle to draw on screen in window coordinates. */ public Rect getFramingRect() { if (mFramingRect == null) { if (mCamera == null) { return null; } Point previewResolution = mConfigManager.getPreviewResolution(); DisplayMetrics metrics = new DisplayMetrics(); ((WindowManager) mPreviewView.getContext() .getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay() .getMetrics(metrics); //int width = (int) (metrics.xdpi * FRAME_WIDTH_INCHES); int width = (int) (metrics.densityDpi * FRAME_WIDTH_INCHES); if (width < MIN_FRAME_WIDTH) { width = MIN_FRAME_WIDTH; } else if (width > previewResolution.x) { width = previewResolution.x; } //int height = (int) (metrics.ydpi * FRAME_HEIGHT_INCHES); int height = (int) (metrics.densityDpi * FRAME_HEIGHT_INCHES); if (height < MIN_FRAME_HEIGHT) { height = MIN_FRAME_HEIGHT; } int leftOffset = (previewResolution.x - width) / 2; int topOffset = ((previewResolution.y - height) / 2); mFramingRect = new Rect(leftOffset, topOffset, leftOffset + width, topOffset + height); } return mFramingRect; } /** * Like {@link #getFramingRect} but coordinates are in terms of the preview frame, * not UI / screen. */ public Rect getFramingRectInPreview() { if (framingRectInPreview == null) { Rect framingRect = getFramingRect(); if (framingRect == null) { return null; } Rect rect = new Rect(framingRect); rect.offset(0, getFramingTopOffset()); Point cameraResolution = mConfigManager.getCameraResolution(); Point screenResolution = mConfigManager.getPreviewResolution(); float scaleX = (float) cameraResolution.x / (float) screenResolution.x; float scaleY = (float) cameraResolution.y / (float) screenResolution.y; rect.left = (int) (rect.left * scaleX); rect.right = (int) (rect.right * scaleX); rect.top = (int) (rect.top * scaleY); rect.bottom = (int) (rect.bottom * scaleY); framingRectInPreview = rect; } return framingRectInPreview; } /** * A factory method to build the appropriate LuminanceSource object based on the format * of the preview buffers, as described by Camera.Parameters. * * @param data A preview frame. * @param width The width of the image. * @param height The height of the image. * @return A PlanarYUVLuminanceSource instance. */ public PlanarYUVLuminanceSource buildLuminanceSource(byte[] data, int width, int height) { Rect rect = getFramingRectInPreview(); if (rect == null) { return null; } // Go ahead and assume it's YUV rather than die. return new PlanarYUVLuminanceSource(data, width, height, rect.left, rect.top, rect.width(), rect.height(), reverseImage); } public int getFramingTopOffset() { return mConfigManager.getHeightDiff() / 2; } public void focus() { if (autoFocusManager != null) { autoFocusManager.start(); } } }