我想在拍摄照片时添加叠加视图。我可以成功添加叠加视图,并捕获照片。
点击捕获按钮后,将显示预览。在该预览屏幕中,叠加视图是颠倒的(大约20到30px)。
选择使用按钮时,拍摄的图像将保存在相册中。在其中,图像很好。它只在预览期间颠倒过来。
我附上下面的代码,请指导我弄错。
-(void)viewDidLoad {
// ...
// Some other actions...
OverlayView *overlay = [[OverlayView alloc] initWithFrame:CGRectMake(0, 0, 320, 480)];
UIImagePickerController *picker = [[UIImagePickerController alloc] init];
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
picker.cameraCaptureMode = UIImagePickerControllerCameraCaptureModePhoto;
[picker setDelegate:self];
picker.showsCameraControls = YES;
picker.navigationBarHidden = YES;
picker.toolbarHidden = YES;
picker.wantsFullScreenLayout = YES;
picker.cameraViewTransform = CGAffineTransformScale(picker.cameraViewTransform, 1.24299, 1.24299 );
picker.cameraOverlayView = overlay;
[self presentModalViewController:picker animated:YES];
[picker release];
}
- (void) imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
// Access the uncropped image from info dictionary
UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
// Save image
UIImage *overlayImage = [UIImage imageNamed:@"img3.png"]; //foverlayImage image
CGSize newSize = image.size;
UIGraphicsBeginImageContext( newSize );
[image drawInRect:CGRectMake(0,0,newSize.width,newSize.height)];
// Apply supplied opacity if applicable
[overlayImage drawInRect:CGRectMake(0,0,newSize.width,newSize.height) blendMode:kCGBlendModeNormal alpha:1.0];
UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(newImage, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
}
- (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
{
UIAlertView *alert;
// Unable to save the image
if (error)
alert = [[UIAlertView alloc] initWithTitle:@"Error"
message:@"Unable to save image to Photo Album."
delegate:self cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
// All is well
else
alert = [[UIAlertView alloc] initWithTitle:@"Success"
message:@"Image saved to Photo Album."
delegate:self cancelButtonTitle:@"Ok"
otherButtonTitles:nil];
[alert show];
alert.delegate = self;
[alert release];
}
在OverlayView.m
中- (id)initWithFrame:(CGRect)frame {
if ((self = [super initWithFrame:frame])) {
// Clear the background of the overlay:
self.opaque = NO;
self.backgroundColor = [UIColor clearColor];
// Load the image to show in the overlay:
UIImage *overlayGraphic = [UIImage imageNamed:@"img3.png"];
UIImageView *overlayGraphicView = [[UIImageView alloc] initWithImage:overlayGraphic];
overlayGraphicView.frame = CGRectMake(0, 0, 320, 460);
[self addSubview:overlayGraphicView];
[overlayGraphicView release];
}
return self;
}
提前致谢。
答案 0 :(得分:0)
嘿,我正在寻找同样的事情并且遇到了这个链接,这解释了为什么它似乎颠倒了!希望能帮助到你 http://trandangkhoa.blogspot.co.uk/2009/07/iphone-os-drawing-image-and-stupid.html