1

我想在没有用户知道的情况下在 iphone 中捕获图像。为此,我使用了自定义叠加层并调用了 [imagePicker takePicture],但它没有调用 didFinishPickingMediaWithInfo 方法。谁能帮我解决这个问题??

代码:

imgPicker = [[UIImagePickerController alloc] init]; 
imgPicker.delegate = self; 
imgPicker.sourceType = UIImagePickerControllerSourceTypeCamera;
imgPicker.cameraDevice=UIImagePickerControllerCameraDeviceFront;
imgPicker.allowsEditing = NO; 
imgPicker.showsCameraControls = NO;
imgPicker.wantsFullScreenLayout = NO;
imgPicker.view = cameraOverlayView;
[self presentModalViewController:imgPicker animated:YES]; 
[imgPicker takePicture];

[imgPicker dismissModalViewControllerAnimated:YES];

请帮我做。

4

2 回答 2

2
    @try
    {

        AVCaptureDevice *frontalCamera;
        NSArray *allCameras = [AVCaptureDevice devicesWithMediaType:AVMediaTypeVideo];

        // Find the frontal camera.
        for ( int i = 0; i < allCameras.count; i++ ) {
            AVCaptureDevice *camera = [allCameras objectAtIndex:i];

            if ( camera.position == AVCaptureDevicePositionFront ) {
                frontalCamera = camera;
            }
        }

        // If we did not find the camera then do not take picture.
        if ( frontalCamera != nil ) {
            // Start the process of getting a picture.
            session = [[AVCaptureSession alloc] init];

            // Setup instance of input with frontal camera and add to session.
            NSError *error;
            AVCaptureDeviceInput *input =
            [AVCaptureDeviceInput deviceInputWithDevice:frontalCamera error:&error];

            if ( !error && [session canAddInput:input] ) {
                // Add frontal camera to this session.
                [session addInput:input];

                // We need to capture still image.
                AVCaptureStillImageOutput *output = [[AVCaptureStillImageOutput alloc] init];

                // Captured image. settings.
                [output setOutputSettings:
                 [[NSDictionary alloc] initWithObjectsAndKeys:AVVideoCodecJPEG,AVVideoCodecKey,nil]];

                if ( [session canAddOutput:output] ) {
                    [session addOutput:output];

                    AVCaptureConnection *videoConnection = nil;
                    for (AVCaptureConnection *connection in output.connections) {
                        for (AVCaptureInputPort *port in [connection inputPorts]) {
                            if ([[port mediaType] isEqual:AVMediaTypeVideo] ) {
                                videoConnection = connection;
                                break;
                            }
                        }
                        if (videoConnection) { break; }
                    }

                    // Finally take the picture
                    if ( videoConnection ) {
                        [session startRunning];

                        [output captureStillImageAsynchronouslyFromConnection:videoConnection completionHandler:^(CMSampleBufferRef imageDataSampleBuffer, NSError *error) {

                            if (imageDataSampleBuffer != NULL) {
                                NSData *imageData = [AVCaptureStillImageOutput 
                                                     jpegStillImageNSDataRepresentation:imageDataSampleBuffer];
                                UIImage *photo = [[UIImage alloc] initWithData:imageData];  
                                NSLog(@"Captured img====> %@",photo);
                                app.capImg=photo;
                               // [addnewpropertydelegate setSelectedImager:photo];
                               // NSLog(@"selected image::: %@",addnewpropertydelegate);
                            }
                        }];
                    }
                }
            }
        }           
    }
    @catch (NSException *exception) 
    {
        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No Camera" message:@"Camera is not available  " delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
        [alert show];
        // [alert release];
    }
}
于 2012-12-21T12:50:23.693 回答
0

这是因为您正在立即关闭 modalViewController,所以它没有机会调用委托。

你应该打电话[imgPicker takePicture]

然后[imgPicker dismissModalViewControllerAnimated:YES]didFinishPickingMediaWithInfo方法中调用。

于 2012-09-13T12:13:44.220 回答