need help here, been fixing for hours but to no avail.
i will like to capture a image and show a preview of it, in the AVCaptureVideoPreviewLayer, it show in landscape mode. However when i grab the image it was shown as portrait mode.
i’m not sure why, i hope someone could help me 🙂
thanks for reading.
when live view

when captured and shown in uiimageview

- (void)addStillImageOutput
{
[self setStillImageOutput:[[AVCaptureStillImageOutput alloc] init]];
NSDictionary *outputSettings = [[NSDictionary alloc] initWithObjectsAndKeys:AVVideoCodecJPEG,AVVideoCodecKey,nil];
[[self stillImageOutput] setOutputSettings:outputSettings];
AVCaptureConnection *videoConnection = nil;
for (AVCaptureConnection *connection in [[self stillImageOutput] connections]) {
for (AVCaptureInputPort *port in [connection inputPorts]) {
if ([[port mediaType] isEqual:AVMediaTypeVideo] ) {
videoConnection = connection;
break;
}
}
if (videoConnection) {
break;
}
}
[[self captureSession] addOutput:[self stillImageOutput]];
}
- (void)captureStillImage
{
AVCaptureConnection *videoConnection = nil;
for (AVCaptureConnection *connection in [[self stillImageOutput] connections]) {
for (AVCaptureInputPort *port in [connection inputPorts]) {
if ([[port mediaType] isEqual:AVMediaTypeVideo]) {
videoConnection = connection;
break;
}
}
if([videoConnection isVideoOrientationSupported])
{
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
if (orientation == UIInterfaceOrientationLandscapeLeft ) {
//NSLog(@"2222UIInterfaceOrientationLandscapeLeft");
[videoConnection setVideoOrientation:AVCaptureVideoOrientationLandscapeLeft];
}
if (orientation == UIInterfaceOrientationLandscapeRight )
{//NSLog(@"222UIInterfaceOrientationLandscapeRight");
[videoConnection setVideoOrientation:AVCaptureVideoOrientationLandscapeRight];
}
}
if (videoConnection) {
break;
}
}
//NSLog(@"about to request a capture from: %@", [self stillImageOutput]);
[[self stillImageOutput] captureStillImageAsynchronouslyFromConnection:videoConnection
completionHandler:^(CMSampleBufferRef imageSampleBuffer, NSError *error) {
CFDictionaryRef exifAttachments = CMGetAttachment(imageSampleBuffer, kCGImagePropertyExifDictionary, NULL);
if (exifAttachments) {
////NSLog(@"attachements: %@", exifAttachments);
}
else
{
//NSLog(@"no attachments");
}
NSData *imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:imageSampleBuffer];
UIImage *image = [[UIImage alloc] initWithData:imageData];
//NSData *jpgImageData = UIImageJPEGRepresentation(image, 0.9);
//UIImage *jpgImage = [[UIImage alloc]initWithData:jpgImageData];
[self setStillImage:image];
self.imageExifDict = (__bridge NSDictionary *)exifAttachments;
////NSLog(@"NSdictionary from CFDict %@",self.imageExifDict);
//
[[NSNotificationCenter defaultCenter] postNotificationName:kImageCapturedSuccessfully object:nil];
}];
}
i pass the image from NSData to UIImage
self.capturedImage.image = [[self captureManager] stillImage];
i did with this C function:
This:
because i used in new Ipad with that resolution
More Info : http://blog.logichigh.com/2008/06/05/uiimage-fix/